blob: 899968a5d3a5a7f18085ee6ba03fb705e2f62d9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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");
return testDone(import.meta.url);
}
|