mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 03:55:57 +00:00
feat(testing): Disabled password change test and enabled webhook test
This commit is contained in:
@@ -15,6 +15,8 @@ const loginRootUser = async () => {
|
||||
{ email: 'user@nocodb.com', password: 'Password123.' }
|
||||
);
|
||||
|
||||
console.log('Login response', response.data);
|
||||
|
||||
return response.data.token;
|
||||
};
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user