Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wishtack/codesandbox-angular-testing
Template for Angular with Jasmine & Jest (as you wish) that runs on Codesandbox.io
https://github.com/wishtack/codesandbox-angular-testing
angular codesandbox jasmine javascript jest karma testing
Last synced: about 1 month ago
JSON representation
Template for Angular with Jasmine & Jest (as you wish) that runs on Codesandbox.io
- Host: GitHub
- URL: https://github.com/wishtack/codesandbox-angular-testing
- Owner: wishtack
- Created: 2019-09-24T20:22:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T10:03:04.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T18:40:51.064Z (8 months ago)
- Topics: angular, codesandbox, jasmine, javascript, jest, karma, testing
- Language: HTML
- Homepage: https://wishtack.io
- Size: 2.51 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CodesandboxAngularTesting
This is a template for codesandbox, you can fork it here: https://codesandbox.io/s/github/wishtack/codesandbox-angular-testing/tree/master/
## Run Karma
```sh
yarn test
```## Run Jest
```sh
yarn jest
```## Known issues
🐞 There are some memory limitations on codesandbox that can make karma crash.
If you want to use karma and you don't need to run the app simultaneously, then you can simply replace `"start": "ng serve..."` by `"start": "ng test"`.
Codesandbox will run karma instead of the app which will reduce memory usage.