Skip to content

Commit

Permalink
remove old cypress build step
Browse files Browse the repository at this point in the history
  • Loading branch information
wheresrhys committed Feb 23, 2021
1 parent a042e31 commit 3bea5ad
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 29 deletions.
28 changes: 0 additions & 28 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,30 +68,6 @@ jobs:
root: *workspace_root
paths:
- .
cypress-build:
<<: *default_container_config

steps:
- *attach_workspace
- restore_cache:
keys:
- *cache_key
- run:
name: Install Dependencies
command: npm ci

# save new cache folder if needed
- save_cache:
key: *cache_key
paths:
- ~/.npm
- ~/.cache
# all other test jobs will run AFTER this build job finishes
# to avoid reinstalling dependencies, we persist the Cypress binary to workspace
- persist_to_workspace:
root: ~/
paths:
- .cache/Cypress
test:
<<: *default_container_config
steps:
Expand Down Expand Up @@ -173,10 +149,6 @@ workflows:
- install:
context: rel-eng-creds
filters: *only_version_tags
- cypress-build:
requires:
- install
filters: *only_version_tags
- test:
requires:
- install
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ describe('End-to-end - Enum primitive', () => {
.should('not.be.checked');
save();

cy.get('#multipleChoiceEnumProperty').should('not.exist')
cy.get('#multipleChoiceEnumProperty').should('not.exist');
});
});

0 comments on commit 3bea5ad

Please sign in to comment.