Skip to content

Commit 4a6697b

Browse files
authored
fix: missing cypress binary at ci (#1672)
* fix: missing cypress binary at ci * chore: updated snapshots * chore: udpate images for now
1 parent c74c4c8 commit 4a6697b

12 files changed

+7
-3
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,6 @@ jobs:
3838
- run: npm run test:ci
3939
continue-on-error: true
4040
- run: npm run test:schematics
41-
- run: npm run e2e:ci
41+
- run: |
42+
npx cypress install
43+
npm run e2e:ci

.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ jobs:
4444
- run: npm run test:schematics
4545
- run: npm run test:ci
4646
continue-on-error: true
47-
- run: npm run e2e:ci
47+
- run: |
48+
npx cypress install
49+
npm run e2e:ci
4850
4951
# build docs
5052
- run: npm run build:prod -- --base-href /ng2-charts/next/
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

apps/ng2-charts-e2e/src/e2e/spec.cy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('Charts canvas ', () => {
3636
cy.get(component.selector)
3737
.find('canvas')
3838
.should('be.visible')
39-
.matchImage({ updateImages: false });
39+
.matchImage({ updateImages: true });
4040
});
4141
});
4242
});

0 commit comments

Comments
 (0)