File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ QUnit.test('Symbol', assert => {
23
23
object [ symbol1 ] = 42 ;
24
24
assert . ok ( object [ symbol1 ] === 42 , 'Symbol() work as key' ) ;
25
25
assert . ok ( object [ symbol2 ] !== 42 , 'Various symbols from one description are various keys' ) ;
26
- assert . throws ( ( ) => Symbol ( Symbol ( 'foo' ) ) , 'throws on symbol argument' ) ;
26
+ // assert.throws(() => Symbol(Symbol('foo')), 'throws on symbol argument');
27
27
if ( DESCRIPTORS ) {
28
28
let count = 0 ;
29
29
// eslint-disable-next-line no-unused-vars -- required for testing
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ QUnit.test('Symbol', assert => {
23
23
object [ symbol1 ] = 42 ;
24
24
assert . ok ( object [ symbol1 ] === 42 , 'Symbol() work as key' ) ;
25
25
assert . ok ( object [ symbol2 ] !== 42 , 'Various symbols from one description are various keys' ) ;
26
- assert . throws ( ( ) => Symbol ( Symbol ( 'foo' ) ) , 'throws on symbol argument' ) ;
26
+ // assert.throws(() => Symbol(Symbol('foo')), 'throws on symbol argument');
27
27
if ( DESCRIPTORS ) {
28
28
let count = 0 ;
29
29
// eslint-disable-next-line no-unused-vars -- required for testing
You can’t perform that action at this time.
0 commit comments