Skip to content

Commit 6cc878b

Browse files
committed
ci: re-enable normal integration tests on CI
Reenables normal integration tests. There weren't any before, so we had to comment out the CircleCI run command.
1 parent e7bc5b2 commit 6cc878b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# http://yaml-online-parser.appspot.com/
99

1010
var_1: &docker_image circleci/node:16.10.0
11-
var_2: &docker-firefox-image circleci/node:16.10.0-browsers
11+
var_2: &docker-browser-image circleci/node:16.10.0-browsers
1212

1313
# **Note**: When updating the beginning of the cache key, also update the cache key to match
1414
# the new cache key prefix. This allows us to take advantage of CircleCI's fallback caching.
@@ -439,7 +439,7 @@ jobs:
439439
# ----------------------------------------------------------------------------
440440
snapshot_tests_local_browsers:
441441
docker:
442-
- image: *docker-firefox-image
442+
- image: *docker-browser-image
443443
resource_class: xlarge
444444
environment:
445445
GCP_DECRYPT_TOKEN: *gcp_decrypt_token
@@ -459,7 +459,8 @@ jobs:
459459
# Job that runs all Bazel integration tests.
460460
# ----------------------------------------------------------------------------
461461
integration_tests:
462-
<<: *job_defaults
462+
docker:
463+
- image: *docker-browser-image
463464
resource_class: xlarge
464465
environment:
465466
GCP_DECRYPT_TOKEN: *gcp_decrypt_token
@@ -472,9 +473,7 @@ jobs:
472473
- *setup_bazel_binary
473474

474475
- run: yarn integration-tests:partial-ivy
475-
# TODO: Re-enable when there are integration tests that should run with Ivy.
476-
# Currently this command fails as there are no tests.
477-
# - run: yarn integration-tests
476+
- run: yarn integration-tests
478477
- run:
479478
name: Running size integration tests (failures are reported in Slack only).
480479
command: |

0 commit comments

Comments
 (0)