From d48caa8e4d795d3b10da02522689847615ba18f6 Mon Sep 17 00:00:00 2001 From: Ryan Manuel Date: Wed, 30 Nov 2022 17:06:07 -0600 Subject: [PATCH] limit integrity check to when there are snapshots --- scripts/binary/smoke.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/binary/smoke.js b/scripts/binary/smoke.js index e77552f98375..2ca1dde7d852 100644 --- a/scripts/binary/smoke.js +++ b/scripts/binary/smoke.js @@ -298,8 +298,8 @@ const test = async function (buildAppExecutable, buildAppDir) { await runSmokeTest(buildAppExecutable) await runProjectTest(buildAppExecutable, e2e) await runFailingProjectTest(buildAppExecutable, e2e) - await runIntegrityTest(buildAppExecutable, buildAppDir, e2e) if (!['1', 'true'].includes(process.env.DISABLE_SNAPSHOT_REQUIRE)) { + await runIntegrityTest(buildAppExecutable, buildAppDir, e2e) await runV8SnapshotProjectTest(buildAppExecutable, e2e) }