diff --git a/.github/workflows/update-e2e-fixtures.yml b/.github/workflows/update-e2e-fixtures.yml index 63f5db437017..32c08c238c65 100644 --- a/.github/workflows/update-e2e-fixtures.yml +++ b/.github/workflows/update-e2e-fixtures.yml @@ -255,7 +255,7 @@ jobs: run: | IS_TEST='true' NODE_OPTIONS='--experimental-vm-modules' \ yarn detox test -c ios.sim.main.ci --headless \ - tests/regression/fixtures/fixture-validation.spec.ts + tests/smoke/fixtures/fixture-validation.spec.ts env: PREBUILT_IOS_APP_PATH: artifacts/main-qa-MetaMask.app diff --git a/tests/scripts/update-e2e-fixture.sh b/tests/scripts/update-e2e-fixture.sh index 3904efa161fc..3a0a3f5f96d2 100755 --- a/tests/scripts/update-e2e-fixture.sh +++ b/tests/scripts/update-e2e-fixture.sh @@ -10,7 +10,7 @@ TARGET_FILE="tests/framework/fixtures/json/default-fixture.json" if [ ! -f "$REPORT_FILE" ]; then echo "Error: $REPORT_FILE not found." echo "Run the fixture validation test first:" - echo " yarn detox test tests/regression/fixtures/fixture-validation.spec.ts -c " + echo " yarn detox test tests/smoke/fixtures/fixture-validation.spec.ts -c " exit 1 fi diff --git a/tests/regression/fixtures/fixture-validation.spec.ts b/tests/smoke/fixtures/fixture-validation.spec.ts similarity index 100% rename from tests/regression/fixtures/fixture-validation.spec.ts rename to tests/smoke/fixtures/fixture-validation.spec.ts