Browse Source

feat(testing): Disabled password change test and enabled webhook test

pull/3848/head
Muhammed Mustafa 2 years ago
parent
commit
3561e5878b
  1. 2
      packages/nocodb/src/lib/services/test/TestResetService/index.ts
  2. 2
      scripts/playwright/tests/authChangePassword.spec.ts
  3. 2
      scripts/playwright/tests/webhook.spec.ts

2
packages/nocodb/src/lib/services/test/TestResetService/index.ts

@ -15,6 +15,8 @@ const loginRootUser = async () => {
{ email: 'user@nocodb.com', password: 'Password123.' }
);
console.log('Login response', response.data);
return response.data.token;
};

2
scripts/playwright/tests/authChangePassword.spec.ts

@ -15,7 +15,7 @@ test.describe("Auth", () => {
toolbar = dashboard.grid.toolbar;
});
test("Change password", async ({ page }) => {
test.skip("Change password", async ({ page }) => {
await dashboard.clickHome();
await dashboard.openPasswordChangeModal();

2
scripts/playwright/tests/webhook.spec.ts

@ -27,7 +27,7 @@ async function verifyHookTrigger(count: number, value: string, request) {
}
}
test.describe.skip("Webhook", () => {
test.describe("Webhook", () => {
let dashboard: DashboardPage, toolbar: ToolbarPage, webhook: WebhookFormPage;
let context: any;

Loading…
Cancel
Save