|
|
|
let t7b = require("../common/7b_import_from_airtable");
|
|
|
|
let t9a = require("../common/9a_QuickTest");
|
|
|
|
const {
|
|
|
|
setCurrentMode,
|
|
|
|
} = require("../../support/page_objects/projectConstants");
|
|
|
|
|
|
|
|
const nocoTestSuite = (apiType, dbType) => {
|
|
|
|
setCurrentMode(apiType, dbType);
|
|
|
|
// CY Migration verification / Quick test
|
|
|
|
t9a.genTest(apiType, dbType, "CY_QUICK");
|
|
|
|
|
|
|
|
// AT Import verification
|
|
|
|
t7b.genTest(apiType, dbType);
|
|
|
|
t9a.genTest(apiType, dbType, "AT_IMPORT");
|
|
|
|
};
|
|
|
|
|
|
|
|
nocoTestSuite("rest", "xcdb");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
|
|
|
*
|
|
|
|
* @author Raju Udava <sivadstala@gmail.com>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|