Browse Source

fix(playwright): lint blocking

pull/4609/head
Wing-Kam Wong 2 years ago
parent
commit
c82f9bf385
  1. 6
      tests/playwright/pages/Dashboard/index.ts

6
tests/playwright/pages/Dashboard/index.ts

@ -116,11 +116,9 @@ export class DashboardPage extends BasePage {
if (mode === 'standard') {
if (title === 'Team & Auth') {
await expect(this.rootPage).toHaveURL(
`/#/nc/${this.project.id}/auth`
);
await expect(this.rootPage).toHaveURL(`/#/nc/${this.project.id}/auth`);
} else {
await expect(this.rootPage).toHaveURL(new RegExp(`#\/nc\/${this.project.id}\/table\/md_.{14}`));
await expect(this.rootPage).toHaveURL(new RegExp(`#/nc/${this.project.id}/table/md_.{14}`));
}
}
}

Loading…
Cancel
Save