Skip to content

Commit 5ebe085

Browse files
committed
Revert "only execute the global-setup once"
This reverts commit a5073dd.
1 parent a5073dd commit 5ebe085

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

jest/global-setup.js

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
let { execSync } = require('child_process')
22

3-
let state = { ran: false }
43
module.exports = function () {
5-
if (state.ran) return
64
execSync('npm run build:rust', { stdio: 'ignore' })
75
execSync('npm run generate:plugin-list', { stdio: 'ignore' })
8-
state.ran = true
96
}

0 commit comments

Comments
 (0)