Skip to content

Commit

Permalink
NTR - Fix e2e test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisGarding committed Jun 13, 2023
1 parent 5378b93 commit 5dbf0e3
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ import credentials from './credentials.mjs';
import clearPaypalSettingsSql from '../helper/clearPaypalSettingsHelper.mjs';
import backendHandleSaveHelper from '../helper/backendHandleSaveHelper.mjs';
import backendLoginHelper from '../helper/backendLoginHelper.mjs';
import clearCacheHelper from "../helper/clearCacheHelper.mjs";

const connection = MysqlFactory.getInstance();

test.use({ viewport: { width: 1920, height: 1080 } });

test.describe('Check the active state of PUI and ACDC', () => {
test.beforeEach(async () => {
await clearCacheHelper.clearCache();
});

test('Check active state', async ({ page }) => {
connection.query(clearPaypalSettingsSql);

Expand Down

0 comments on commit 5dbf0e3

Please sign in to comment.