aboutsummaryrefslogtreecommitdiff
path: root/test/js/import_as_default_compare.t.js
blob: 5dde3184283da94cd0f2a4ee81e377bbb59775eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*---
includes: []
flags: []
paths: [test/js/module]
---*/

import a from 'lib6.js';
import b from 'lib6-1.js';

assert.sameValue(a.a, 1);
assert.sameValue(a.b, 2);

assert.sameValue(a.a, b.a);
assert.sameValue(a.b, b.b);