mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
427 B
19 lines
427 B
2 years ago
|
let t6d = require("../common/6d_language_validation");
|
||
|
|
||
|
const {
|
||
|
setCurrentMode,
|
||
|
} = require("../../support/page_objects/projectConstants");
|
||
|
const t01 = require("../common/00_pre_configurations");
|
||
|
|
||
|
const nocoTestSuite = (apiType, dbType) => {
|
||
|
setCurrentMode(apiType, dbType);
|
||
|
|
||
|
// Sakila Ext DB project creation
|
||
|
t01.genTest(apiType, dbType);
|
||
|
|
||
|
// i18n
|
||
|
t6d.genTest(apiType, dbType);
|
||
|
};
|
||
|
|
||
|
nocoTestSuite("rest", "mysql");
|