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

This commit is contained in:
Muhammed Mustafa
2022-10-25 15:05:32 +05:30
parent 9c25f0f665
commit 3561e5878b
3 changed files with 4 additions and 2 deletions

View File

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

View File

@@ -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();

View File

@@ -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;