Browse Source

Merge branch 'refactor/webhooks' of https://github.com/nocodb/nocodb into refactor/webhooks

pull/5349/head
Wing-Kam Wong 1 year ago
parent
commit
70d1e2d3e3
  1. 6
      tests/playwright/tests/01-webhook.spec.ts

6
tests/playwright/tests/01-webhook.spec.ts

@ -3,7 +3,7 @@ import { DashboardPage } from '../pages/Dashboard';
import setup from '../setup';
import makeServer from '../setup/server';
import { WebhookFormPage } from '../pages/Dashboard/WebhookForm';
import { isSubset } from '../utils';
import { isSubset } from './utils/general';
const hookPath = 'http://localhost:9090/hook';
@ -95,6 +95,8 @@ test.describe.serial('Webhook', () => {
await dashboard.closeTab({ title: 'Team & Auth' });
await dashboard.treeView.createTable({ title: 'Test' });
// create
//
// hook order
// hook-1: after insert
// - verify trigger after insert
@ -123,6 +125,8 @@ test.describe.serial('Webhook', () => {
///////////////////////////////////////////////////////////////////////////
// update
//
// hook order
// hook-1: after insert
// hook-2: after update

Loading…
Cancel
Save