Ignore:
Timestamp:
01/21/25 03:08:24 (3 days ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/get-symbol-description/test/index.js

    r0c6b92a r79a0317  
    1313        t.test('no symbols', { skip: v.hasSymbols }, function (st) {
    1414                st['throws'](
     15                        // @ts-expect-error
    1516                        getSymbolDescription,
    1617                        SyntaxError,
     
    2122        });
    2223
    23         forEach(v.nonSymbolPrimitives.concat(v.objects), function (nonSymbol) {
     24        forEach([].concat(
     25                // @ts-expect-error TS sucks with concat
     26                v.nonSymbolPrimitives,
     27                v.objects
     28        ), function (nonSymbol) {
    2429                t['throws'](
    2530                        function () { getSymbolDescription(nonSymbol); },
     
    3136        t.test('with symbols', { skip: !v.hasSymbols }, function (st) {
    3237                forEach(
    33                         [
     38                        // eslint-disable-next-line no-extra-parens
     39                        /** @type {[symbol, undefined | string][]} */ ([
    3440                                [Symbol(), undefined],
    3541                                [Symbol(undefined), undefined],
     42                                // @ts-expect-error
    3643                                [Symbol(null), 'null'],
    3744                                [Symbol.iterator, 'Symbol.iterator'],
    3845                                [Symbol('foo'), 'foo']
    39                         ],
     46                        ]),
    4047                        function (pair) {
    4148                                var sym = pair[0];
Note: See TracChangeset for help on using the changeset viewer.