Skip to content

Commit

Permalink
Update E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dan437 committed Nov 30, 2023
1 parent f2b50c1 commit b3376d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/specs/swaps/swap-action-regression.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Regression } from '../../tags';
const fixtureServer = new FixtureServer();

describe(Regression('Multiple Swaps from Actions'), () => {
let swapOnboarded = false;
let swapOnboarded = true; // TODO: Set it to false once we show the onboarding page again.
beforeAll(async () => {
await TestHelpers.reverseServerPort();
const fixture = new FixtureBuilder()
Expand Down
2 changes: 1 addition & 1 deletion e2e/specs/swaps/swap-action-smoke.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Smoke } from '../../tags';
const fixtureServer = new FixtureServer();

describe(Smoke('Swap from Actions'), () => {
let swapOnboarded = false;
let swapOnboarded = true; // TODO: Set it to false once we show the onboarding page again.
beforeAll(async () => {
await TestHelpers.reverseServerPort();
const fixture = new FixtureBuilder()
Expand Down
2 changes: 1 addition & 1 deletion e2e/specs/swaps/swap-token-chart.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Regression } from '../../tags';
const fixtureServer = new FixtureServer();

describe(Regression('Swap from Token view'), () => {
const swapOnboarded = false;
const swapOnboarded = true; // TODO: Set it to false once we show the onboarding page again.
beforeAll(async () => {
await TestHelpers.reverseServerPort();
const fixture = new FixtureBuilder()
Expand Down

0 comments on commit b3376d0

Please sign in to comment.