Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solidjs/solid-jest
Jest preset for SolidJS
https://github.com/solidjs/solid-jest
Last synced: 6 days ago
JSON representation
Jest preset for SolidJS
- Host: GitHub
- URL: https://github.com/solidjs/solid-jest
- Owner: solidjs
- License: mit
- Created: 2021-03-06T07:09:45.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-19T14:27:16.000Z (over 1 year ago)
- Last Synced: 2024-10-29T18:37:44.903Z (10 days ago)
- Language: JavaScript
- Size: 634 KB
- Stars: 34
- Watchers: 2
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-solid-js - Solid Jest
README
# Solid Jest
This library contains presets for SolidJS to easily get started testing with Jest for both browser and server rendering with Node.
### Usage
In your jest.config.js
```js
module.exports = {
preset: "solid-jest/preset/browser"
};
``````js
module.exports = {
preset: "solid-jest/preset/node"
};
```