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

https://github.com/laurabeatris/javascript-expert

Study driven repository to manage advanced JavaScript topics
https://github.com/laurabeatris/javascript-expert

ecmascript javascript nodejs testing

Last synced: 3 months ago
JSON representation

Study driven repository to manage advanced JavaScript topics

Awesome Lists containing this project

README

        



## JavaScript Testing
- [Mocks](https://github.com/LauraBeatris/javascript-expert/tree/main/tests/mocks) - Test different behaviors
- [Stubs](https://github.com/LauraBeatris/javascript-expert/tree/main/tests/stubs) - Intercept calls to external sources
- [Spies](https://github.com/LauraBeatris/javascript-expert/tree/main/tests/spies) - Spy the behavior of functions
- [E2E & Code Coverage](https://github.com/LauraBeatris/javascript-expert/tree/main/tests/e2e-and-code-coverage) - Test the application features exposed to the end-user and ensure that all the use cases are being covered

## Advanced Data Types
- [Symbols](https://github.com/LauraBeatris/javascript-expert/tree/main/advanced-data-types/symbols) - Unique primitive values, mostly used as property identifiers for private attributes or methods.

## Objects
- [Property Descriptors](https://github.com/LauraBeatris/javascript-expert/tree/main/objects/property-descriptors) - Defines the behavior and value of properties

#### Thanks for the [JavaScript Expert](https://javascriptexpert.com.br/lc_jse_out20_matriculas_abertas) course and [YDKJS](https://github.com/getify/You-Dont-Know-JS) book series for proving an amazing content.