We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
global-setup
1 parent a5073dd commit 5ebe085Copy full SHA for 5ebe085
jest/global-setup.js
@@ -1,9 +1,6 @@
1
let { execSync } = require('child_process')
2
3
-let state = { ran: false }
4
module.exports = function () {
5
- if (state.ran) return
6
execSync('npm run build:rust', { stdio: 'ignore' })
7
execSync('npm run generate:plugin-list', { stdio: 'ignore' })
8
- state.ran = true
9
}
0 commit comments