mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
e7fc29a59f
* feat(jest): create jest config package for unit testing * chore: housekeeping * fix: now we need to explicitly allow importing without extension * fix: recover EditorDriverInterface import * Apply suggestions from code review * chore: yarn Signed-off-by: Sami Mazouz <sychocouldy@gmail.com> |
||
---|---|---|
.. | ||
.gitignore | ||
index.cjs | ||
LICENSE | ||
package.json | ||
README.md | ||
setup-env.js |
Jest config for Flarum
This package provides a Jest config object to run unit & integration tests on Flarum extensions.
Usage
- Install the package:
yarn add --dev flarum-jest-config
- Add
"type": "module"
to yourpackage.json
- Add
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
to yourpackage.json
scripts - Rename
webpack.config.js
towebpack.config.cjs
- Create a
jest.config.cjs
file with the following content:
module.exports = require('flarum-jest-config')();