mirror of https://github.com/tc39/test262.git
6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
|
import { shouldBe } from "./resources/assert.js";
|
||
|
import * as async from "./import-namespace-async.js"
|
||
|
|
||
|
export let Cocoa = 42;
|
||
|
shouldBe(async.Cocoa, 42);
|