Last active
September 28, 2020 09:23
-
-
Save lorenzofox3/c6ea44dbf9f33c6c9dd7922a2f083d9b to your computer and use it in GitHub Desktop.
Revisions
-
lorenzofox3 revised this gist
Sep 28, 2020 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ import {Assert} from 'zora' export default (t: Assert) => { t.test(`some test`, (t) => { t.ok(true, 'woot woot'); }) -
lorenzofox3 created this gist
Sep 28, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ { "name": "pta-ts", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "ts-node ./node_modules/.bin/pta ./test.ts" }, "author": "", "license": "ISC", "dependencies": { "pta": "~0.1.3", "ts-node": "~9.0.0", "typescript": "~4.0.3" } } This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ export default t => { t.test(`some test`, (t) => { t.ok(true, 'woot woot'); }) }