Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/


Codesandbox Angular Testing

## 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.