blob: 7d9c5c5bbb552811bc1e28d5b7d2775b3e97499f [file] [log] [blame] [edit]
// Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: ImportCall is a CallExpression, it can be followed by square brackets
template: default
---*/
//- setup
// import('./dynamic-import-module_FIXTURE.js')
//- import
import('./dynamic-import-module_FIXTURE.js')['then'](x => x)
//- body
assert.sameValue(imported.x, 1);