Skip to content

Commit

Permalink
Fix test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
davedoesdev committed Nov 15, 2023
1 parent fd20165 commit 118d46e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/_common.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
global.path = require('path');
global.fs = require('fs');
global.os = require('os');
global.crypto = require('crypto');
if (!global.crypto) {
global.crypto = require('crypto');
}
global.rimraf = require('rimraf').rimraf;
global.child_process = require('child_process');
global.expect = require('chai').expect;
Expand Down

0 comments on commit 118d46e

Please sign in to comment.