Skip to content

Commit

Permalink
Revert "only execute the global-setup once"
Browse files Browse the repository at this point in the history
This reverts commit a5073dd.
  • Loading branch information
RobinMalfait committed Apr 7, 2023
1 parent a5073dd commit 5ebe085
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions jest/global-setup.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
let { execSync } = require('child_process')

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

0 comments on commit 5ebe085

Please sign in to comment.