Browse Source

chore: increase timeout for running fe & be (#7928)

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/7905/head
Mert E 8 months ago committed by GitHub
parent
commit
ef917e5c72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/playwright-test-workflow.yml
  2. 12
      packages/nocodb-sdk/src/lib/Api.ts

2
.github/workflows/playwright-test-workflow.yml

@ -131,7 +131,7 @@ jobs:
sleep 2
done
echo "Backend is up"
timeout-minutes: 2
timeout-minutes: 3
- name: Run Playwright Tests
working-directory: ./tests/playwright
run: E2E_DB_TYPE=${{ inputs.db }} npm run ci:test:shard:${{ inputs.shard }}

12
packages/nocodb-sdk/src/lib/Api.ts

@ -1637,7 +1637,7 @@ export interface LinkToAnotherColumnReqType {
/** The title of the virtual column */
title: string;
/** The type of the relationship */
type: 'bt' | 'hm' | 'mm';
type: 'bt' | 'hm' | 'mm' | 'oo';
/** Abstract type of the relationship */
uidt: 'LinkToAnotherRecord' | 'Links';
/** Is this relationship virtual? */
@ -8298,7 +8298,7 @@ export class Api<
baseName: string,
tableName: string,
rowId: any,
relationType: 'mm' | 'hm' | 'bt',
relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string,
query?: {
/** @min 1 */
@ -8346,7 +8346,7 @@ export class Api<
baseName: string,
tableName: string,
rowId: any,
relationType: 'mm' | 'hm' | 'bt',
relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string,
refRowId: string,
query?: {
@ -8413,7 +8413,7 @@ export class Api<
baseName: string,
tableName: string,
rowId: any,
relationType: 'mm' | 'hm' | 'bt',
relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string,
refRowId: string,
params: RequestParams = {}
@ -8453,7 +8453,7 @@ export class Api<
baseName: string,
tableName: string,
rowId: any,
relationType: 'mm' | 'hm' | 'bt',
relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string,
query?: {
/** @min 1 */
@ -9347,7 +9347,7 @@ export class Api<
dataNestedList: (
sharedViewUuid: string,
rowId: any,
relationType: 'mm' | 'hm' | 'bt',
relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string,
query?: {
/** Which fields to be shown */

Loading…
Cancel
Save