Last active
November 7, 2019 06:46
-
-
Save tianhaoz95/398748ee17f62efea8d5b39dfb30a3ed to your computer and use it in GitHub Desktop.
install ts mocha
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 characters
| /** | |
| * First we need to install mocha, chai and their types with command: | |
| * npm install --save-dev @types/mocha @types/chai mocha chai | |
| */ | |
| import "mocha"; | |
| describe("test iwfp api", () => { | |
| it("hello world no crash", () => { | |
| // run some tests here | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment