Skip to content

Commit 5cc531e

Browse files
authored
feat: switch to samll resolution in CI (#1780)
* feat: switch to samll resolution in CI * feat: turn on and update gho test coverage
1 parent 2dba45c commit 5cc531e

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

cypress.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from 'cypress';
22

33
export default defineConfig({
4-
viewportWidth: 1600,
4+
viewportWidth: 1000,
55
viewportHeight: 800,
66
defaultCommandTimeout: 40000,
77
pageLoadTimeout: 120000,

cypress/e2e/4-gho-ethereum/gho-basic.ethereum-v3.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const testData = {
4444
},
4545
};
4646

47-
describe.skip(`GHO base testing and e-mode`, () => {
47+
describe(`GHO base testing and e-mode`, () => {
4848
const skipTestState = skipState(false);
4949
configEnvWithTenderlyAEthereumV3Fork({
5050
v3: true,

cypress/e2e/4-gho-ethereum/gho-discount-dashboard.gho-v3.cy.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const testData = {
2929
};
3030

3131
// too slow for CI execution
32-
describe.skip(`GHO DASHBOARD APY TESTING`, () => {
32+
describe(`GHO DASHBOARD APY TESTING`, () => {
3333
let baseApy: number;
3434

3535
describe(`Verify max APY for GHO`, () => {
@@ -155,7 +155,8 @@ describe.skip(`GHO DASHBOARD APY TESTING`, () => {
155155
});
156156
});
157157
});
158-
describe(`Verify APY updating for borrowed GHO`, () => {
158+
//too slow for CI
159+
describe.skip(`Verify APY updating for borrowed GHO`, () => {
159160
let stepBackAPY: number;
160161
configEnvWithTenderlyAEthereumV3Fork({
161162
v3: true,

cypress/e2e/4-gho-ethereum/gho-modal.gho-v3.cy.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const testData = {
1616
},
1717
};
1818

19-
describe.skip(`GHO MODAL APY TESTING`, () => {
19+
describe(`GHO MODAL APY TESTING`, () => {
2020
describe(`Verify modal without discount APY = ${gho.apy.max}%`, () => {
2121
configEnvWithTenderlyAEthereumV3Fork({
2222
v3: true,
@@ -129,7 +129,8 @@ describe.skip(`GHO MODAL APY TESTING`, () => {
129129
});
130130
});
131131
});
132-
describe(`Verify modal with changing discount for APY`, () => {
132+
// too slow for CI
133+
describe.skip(`Verify modal with changing discount for APY`, () => {
133134
let minAPYRage: number;
134135
let maxAPYRange: number;
135136
let borrowedAPY: number;

0 commit comments

Comments
 (0)