chore(lint): add .out file reference checker (#27078)

Co-authored-by: David Sherret <dsherret@gmail.com>
This commit is contained in:
Leo Kettmeir 2024-11-26 20:53:20 -08:00 committed by GitHub
parent 4700f12ddc
commit 42b71d82db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
765 changed files with 517 additions and 4766 deletions

View 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);