Deno Testing

Deno has a built-in test runner that can be used for testing Typescript and Javascript code. Once, you have installed deno, just run deno test in the command line and it will execute all the test files you have. We can run specific files by referencing them after the command. deno test tests/employee.test.ts Writing Deno …

Deno Testing Read More »