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
- Host: GitHub
- URL: https://github.com/laurabeatris/javascript-expert
- Owner: LauraBeatris
- License: mit
- Created: 2020-12-05T22:11:27.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-18T14:49:22.000Z (over 4 years ago)
- Last Synced: 2025-02-28T17:46:39.997Z (4 months ago)
- Topics: ecmascript, javascript, nodejs, testing
- Language: JavaScript
- Homepage:
- Size: 98.6 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.