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. 10
      packages/nocodb/tests/unit/factory/project.ts

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

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

Loading…
Cancel
Save