Skip to content

Commit

Permalink
fix: missing cypress binary at ci (#1672)
Browse files Browse the repository at this point in the history
* fix: missing cypress binary at ci

* chore: updated snapshots

* chore: udpate images for now
  • Loading branch information
valorkin committed Jul 21, 2023
1 parent c74c4c8 commit 4a6697b
Show file tree
Hide file tree
Showing 12 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -38,4 +38,6 @@ jobs:
- run: npm run test:ci
continue-on-error: true
- run: npm run test:schematics
- run: npm run e2e:ci
- run: |
npx cypress install
npm run e2e:ci
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -44,7 +44,9 @@ jobs:
- run: npm run test:schematics
- run: npm run test:ci
continue-on-error: true
- run: npm run e2e:ci
- run: |
npx cypress install
npm run e2e:ci
# build docs
- run: npm run build:prod -- --base-href /ng2-charts/next/
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/ng2-charts-e2e/src/e2e/spec.cy.ts
Expand Up @@ -36,7 +36,7 @@ describe('Charts canvas ', () => {
cy.get(component.selector)
.find('canvas')
.should('be.visible')
.matchImage({ updateImages: false });
.matchImage({ updateImages: true });
});
});
});

0 comments on commit 4a6697b

Please sign in to comment.