-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb279d0
commit f55468c
Showing
7 changed files
with
123 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"authors": [ | ||
"SleeplessByte" | ||
], | ||
"files": { | ||
"solution": [ | ||
], | ||
"test": [ | ||
"__typetests__/docs.tst.ts" | ||
], | ||
"example": [ | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"authors": [ | ||
"SleeplessByte" | ||
], | ||
"files": { | ||
"solution": [ | ||
"fire.ts" | ||
], | ||
"test": [ | ||
"__typetests__/fire.tst.ts" | ||
], | ||
"example": [ | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"authors": [ | ||
"SleeplessByte" | ||
], | ||
"files": { | ||
"solution": [ | ||
"fire.ts" | ||
], | ||
"test": [ | ||
"__typetests__/fire.tst.ts" | ||
], | ||
"example": [ | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { join } from 'node:path' | ||
import shelljs from 'shelljs' | ||
import { assertError, assertPass } from './asserts.mjs' | ||
import { fixtures } from './paths.mjs' | ||
|
||
shelljs.echo('type tests (only) > documentation solution (smoke test)') | ||
assertError('tstyche', join(fixtures, 'tstyche', 'documentation')) | ||
|
||
shelljs.echo('type tests (only) > failing solution') | ||
assertError('tstyche', join(fixtures, 'tstyche', 'fire')) | ||
|
||
shelljs.echo('type tests (only) > passing solution') | ||
assertPass('tstyche', join(fixtures, 'tstyche', 'firefought')) |