diff options
Diffstat (limited to 'cli/tests/testdata/npm/cjs_with_deps/main.js')
-rw-r--r-- | cli/tests/testdata/npm/cjs_with_deps/main.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cli/tests/testdata/npm/cjs_with_deps/main.js b/cli/tests/testdata/npm/cjs_with_deps/main.js deleted file mode 100644 index 568726874..000000000 --- a/cli/tests/testdata/npm/cjs_with_deps/main.js +++ /dev/null @@ -1,12 +0,0 @@ -import chalk from "npm:chalk@4"; -import { expect } from "npm:chai@4.3"; - -console.log(chalk.green("chalk cjs loads")); - -const timeout = setTimeout(() => {}, 0); -expect(timeout).to.be.a("number"); -clearTimeout(timeout); - -const interval = setInterval(() => {}, 100); -expect(interval).to.be.a("number"); -clearInterval(interval); |