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 sleep 2
done done
echo "Backend is up" echo "Backend is up"
timeout-minutes: 2 timeout-minutes: 3
- name: Run Playwright Tests - name: Run Playwright Tests
working-directory: ./tests/playwright working-directory: ./tests/playwright
run: E2E_DB_TYPE=${{ inputs.db }} npm run ci:test:shard:${{ inputs.shard }} 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 */ /** The title of the virtual column */
title: string; title: string;
/** The type of the relationship */ /** The type of the relationship */
type: 'bt' | 'hm' | 'mm'; type: 'bt' | 'hm' | 'mm' | 'oo';
/** Abstract type of the relationship */ /** Abstract type of the relationship */
uidt: 'LinkToAnotherRecord' | 'Links'; uidt: 'LinkToAnotherRecord' | 'Links';
/** Is this relationship virtual? */ /** Is this relationship virtual? */
@ -8298,7 +8298,7 @@ export class Api<
baseName: string, baseName: string,
tableName: string, tableName: string,
rowId: any, rowId: any,
relationType: 'mm' | 'hm' | 'bt', relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string, columnName: string,
query?: { query?: {
/** @min 1 */ /** @min 1 */
@ -8346,7 +8346,7 @@ export class Api<
baseName: string, baseName: string,
tableName: string, tableName: string,
rowId: any, rowId: any,
relationType: 'mm' | 'hm' | 'bt', relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string, columnName: string,
refRowId: string, refRowId: string,
query?: { query?: {
@ -8413,7 +8413,7 @@ export class Api<
baseName: string, baseName: string,
tableName: string, tableName: string,
rowId: any, rowId: any,
relationType: 'mm' | 'hm' | 'bt', relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string, columnName: string,
refRowId: string, refRowId: string,
params: RequestParams = {} params: RequestParams = {}
@ -8453,7 +8453,7 @@ export class Api<
baseName: string, baseName: string,
tableName: string, tableName: string,
rowId: any, rowId: any,
relationType: 'mm' | 'hm' | 'bt', relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string, columnName: string,
query?: { query?: {
/** @min 1 */ /** @min 1 */
@ -9347,7 +9347,7 @@ export class Api<
dataNestedList: ( dataNestedList: (
sharedViewUuid: string, sharedViewUuid: string,
rowId: any, rowId: any,
relationType: 'mm' | 'hm' | 'bt', relationType: 'mm' | 'hm' | 'bt' | 'oo',
columnName: string, columnName: string,
query?: { query?: {
/** Which fields to be shown */ /** Which fields to be shown */

Loading…
Cancel
Save