You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script always seems to be skipped because of the first check ' if (process.env.EXTENDED_TESTS === undefined) '. Anyone know why process.env.EXTENDED_TESTS is always undefined and how to fix it?
The test in it('Supply checks (long)', async function () which is always results in the script getting skipped
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The script always seems to be skipped because of the first check ' if (process.env.EXTENDED_TESTS === undefined) '. Anyone know why process.env.EXTENDED_TESTS is always undefined and how to fix it?
if (process.env.EXTENDED_TESTS === undefined) { console.log("process.env.EXTENDED_TESTS === undefined. Skipping Supply checks"); this.skip(); }
if (!Encore.isRuntimeEnvironmentConfigured()) { Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev'); }
"test-extended": "EXTENDED_TESTS=1 hardhat test",
Beta Was this translation helpful? Give feedback.
All reactions