mirror of
https://github.com/denoland/deno.git
synced 2025-09-23 02:42:34 +00:00
chore(lint): add .out file reference checker (#27078)
Co-authored-by: David Sherret <dsherret@gmail.com>
This commit is contained in:
parent
4700f12ddc
commit
42b71d82db
765 changed files with 517 additions and 4766 deletions
12
tests/specs/npm/node_modules_dir_with_deps/main.js
Normal file
12
tests/specs/npm/node_modules_dir_with_deps/main.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
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);
|
Loading…
Add table
Add a link
Reference in a new issue