From 42d13c4e6a95a995ea1383d8fd9baffab63804d9 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Wed, 22 Mar 2023 11:42:50 -0600 Subject: [PATCH] chore(cli): disable flash_test as it is causing SIGSEGV (#18358) --- cli/tests/integration/js_unit_tests.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/tests/integration/js_unit_tests.rs b/cli/tests/integration/js_unit_tests.rs index 46e66ab772..1f2ebf0622 100644 --- a/cli/tests/integration/js_unit_tests.rs +++ b/cli/tests/integration/js_unit_tests.rs @@ -26,6 +26,8 @@ fn js_unit_tests() { .current_dir(util::root_path()) .arg("test") .arg("--unstable") + // Flash tests are crashing with SIGSEGV on Ubuntu, so we'll disable these entirely + .arg("--ignore=./cli/tests/unit/flash_test.ts") .arg("--location=http://js-unit-tests/foo/bar") .arg("--no-prompt") .arg("-A")