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