blob: 7573e431c6f2b3301818cc84ea4284991671f564 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import * as InexactRoot from "inexact";
import * as InexactFile from "inexact/file";
import * as ExactFile from "inexact/foo";
export async function test() {
console.assert(InexactRoot.target === "browser");
console.assert(InexactFile.target === "browser");
console.assert(ExactFile.target === "browser");
console.assert(failed);
return testDone(import.meta.url);
}
|