test262/src/dynamic-import/ns-no-iterator.case
2018-10-11 11:09:48 -04:00

14 lines
441 B
Plaintext

// Copyright (C) 2016 Kevin Gibbons. All rights reserved.
// Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Module namespace objects lack a Symbol.toStringTag
template: namespace
features: [Symbol.iterator]
---*/
//- import
import('./module-code_FIXTURE.js')
//- body
assert.sameValue(Object.prototype.hasOwnProperty.call(ns, Symbol.iterator), false);