A workshop designed to teach developers how to effectively use Deno's built-in testing capabilities.
- Deno installed
- Basic understanding of TypeScript
- Familiarity with software testing concepts
-
Clone this repository:
git clone https://github.com/denoland/testing-workshop.git
-
Navigate to the project directory:
cd testing-workshop
-
Start with module 1:
cd modules/01-basic-tests
-
Follow the instructions in each module's README.md file
Run all tests:
deno test
Run tests with coverage:
deno test --coverage
Generate coverage report:
deno coverage coverage/
Contributions are welcome! Please feel free to submit a Pull Request.
This workshop is released under the MIT License.
Happy Testing!