test(es): Organize tests (#4251)

This commit is contained in:
Donny/강동윤 2022-04-05 17:21:19 +09:00 committed by GitHub
parent 9843ee42df
commit c32f42b374
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
230 changed files with 11 additions and 4 deletions

View File

@ -2,3 +2,10 @@
. "$(dirname "$0")/_/husky.sh"
yarn lint-staged
if command -v find &> /dev/null
then
find . -name '.DS_Store' -type f -delete
find . -type d -empty -delete
fi

View File

@ -312,25 +312,25 @@ fn deno_8302() {
#[test]
#[timeout(60000)]
fn deno_8399_1() {
run("tests/deno/issue-8399-1/input.ts", &[]);
run("tests/deno/issue-8399/1/input.ts", &[]);
}
#[test]
#[timeout(60000)]
fn deno_8399_2() {
run("tests/deno/issue-8399-2/input.ts", &[]);
run("tests/deno/issue-8399/2/input.ts", &[]);
}
#[test]
#[timeout(60000)]
fn deno_8486_1() {
run("tests/deno/issue-8486-1/input.ts", &["myCLI"]);
run("tests/deno/issue-8486/1/input.ts", &["myCLI"]);
}
#[test]
#[timeout(60000)]
fn deno_7288_1() {
run("tests/deno/deno-7288-1/input.ts", &[]);
run("tests/deno/deno-7288/1/input.ts", &[]);
}
#[test]

Some files were not shown because too many files have changed in this diff Show More