Browse Source

fix(tests): change password to fulfil min length of 8

pull/5222/head
Wing-Kam Wong 2 years ago
parent
commit
5bda9c36a5
  1. 12
      packages/nocodb/tests/unit/factory/project.ts

12
packages/nocodb/tests/unit/factory/project.ts

@ -4,13 +4,13 @@ import Project from '../../../src/lib/models/Project';
const sakilaProjectConfig = (context) => { const sakilaProjectConfig = (context) => {
let base; let base;
if(context.sakilaDbConfig.client === 'mysql2'){ if (context.sakilaDbConfig.client === 'mysql2') {
base = { base = {
type: context.sakilaDbConfig.client, type: context.sakilaDbConfig.client,
config: { config: {
client: context.sakilaDbConfig.client, client: context.sakilaDbConfig.client,
connection: context.sakilaDbConfig.connection connection: context.sakilaDbConfig.connection,
} },
}; };
} else { } else {
base = { base = {
@ -26,7 +26,7 @@ const sakilaProjectConfig = (context) => {
} }
base = { base = {
...base, ...base,
inflection_column: 'camelize', inflection_column: 'camelize',
inflection_table: 'camelize', inflection_table: 'camelize',
}; };
@ -35,7 +35,7 @@ const sakilaProjectConfig = (context) => {
title: 'sakila', title: 'sakila',
bases: [base], bases: [base],
external: true, external: true,
} };
}; };
const defaultProjectValue = { const defaultProjectValue = {
@ -44,7 +44,7 @@ const defaultProjectValue = {
const defaultSharedBaseValue = { const defaultSharedBaseValue = {
roles: 'viewer', roles: 'viewer',
password: 'test', password: 'password123',
}; };
const createSharedBase = async (app, token, project, sharedBaseArgs = {}) => { const createSharedBase = async (app, token, project, sharedBaseArgs = {}) => {

Loading…
Cancel
Save