Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        


Solid Jest

# 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"
};
```