diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-03-22 11:42:50 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 13:42:50 -0400 |
commit | 42d13c4e6a95a995ea1383d8fd9baffab63804d9 (patch) | |
tree | c0ee262b18455c17bf3136a2aca998e2a88b5d72 /cli/tests/integration/js_unit_tests.rs | |
parent | 4c2269d64a7dda1397d49bd235e5546470a683ea (diff) |
chore(cli): disable flash_test as it is causing SIGSEGV (#18358)
Diffstat (limited to 'cli/tests/integration/js_unit_tests.rs')
-rw-r--r-- | cli/tests/integration/js_unit_tests.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/integration/js_unit_tests.rs b/cli/tests/integration/js_unit_tests.rs index 46e66ab77..1f2ebf062 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") |