diff options
Diffstat (limited to 'tests/specs/test/interval')
| -rw-r--r-- | tests/specs/test/interval/__test__.jsonc | 5 | ||||
| -rw-r--r-- | tests/specs/test/interval/main.out | 5 | ||||
| -rw-r--r-- | tests/specs/test/interval/main.ts | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/tests/specs/test/interval/__test__.jsonc b/tests/specs/test/interval/__test__.jsonc new file mode 100644 index 000000000..e1ed1b926 --- /dev/null +++ b/tests/specs/test/interval/__test__.jsonc @@ -0,0 +1,5 @@ +{ + "args": "test main.ts", + "exitCode": 0, + "output": "main.out" +} diff --git a/tests/specs/test/interval/main.out b/tests/specs/test/interval/main.out new file mode 100644 index 000000000..7e5ef2914 --- /dev/null +++ b/tests/specs/test/interval/main.out @@ -0,0 +1,5 @@ +Check [WILDCARD]/main.ts +running 0 tests from ./main.ts + +ok | 0 passed | 0 failed ([WILDCARD]) + diff --git a/tests/specs/test/interval/main.ts b/tests/specs/test/interval/main.ts new file mode 100644 index 000000000..7eb588c59 --- /dev/null +++ b/tests/specs/test/interval/main.ts @@ -0,0 +1 @@ +setInterval(function () {}, 0); |
