mirror of https://github.com/nocodb/nocodb
Muhammed Mustafa
2 years ago
8 changed files with 34 additions and 148 deletions
@ -1,51 +0,0 @@
|
||||
// let t0 = require("./explicitLogin");
|
||||
// let t01 = require("../common/00_pre_configurations");
|
||||
let t6b = require("../common/6b_downloadCsv"); |
||||
// let t6c = require("../common/6c_swagger_api");
|
||||
// let t6d = require("../common/6d_language_validation");
|
||||
// let t6e = require("../common/6e_project_operations");
|
||||
let t6f = require("../common/6f_attachments"); |
||||
// let t6g = require("../common/6g_base_share");
|
||||
// let t7a = require("../common/7a_create_project_from_excel");
|
||||
const { |
||||
setCurrentMode, |
||||
} = require("../../support/page_objects/projectConstants"); |
||||
// const t8a = require("../common/8a_webhook");
|
||||
const t9b = require("../common/9b_ERD"); |
||||
|
||||
const nocoTestSuite = (apiType, dbType) => { |
||||
setCurrentMode(apiType, dbType); |
||||
|
||||
// Download CSV
|
||||
t6b.genTest(apiType, dbType); |
||||
|
||||
// Attachment cell
|
||||
t6f.genTest(apiType, dbType); |
||||
|
||||
// ERD:
|
||||
t9b.genTest(apiType, dbType); |
||||
}; |
||||
|
||||
nocoTestSuite("rest", "postgres"); |
||||
|
||||
/** |
||||
* @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/>.
|
||||
* |
||||
*/ |
@ -1,30 +0,0 @@
|
||||
// let t0 = require("./explicitLogin");
|
||||
// let t01 = require("../common/00_pre_configurations");
|
||||
let t6b = require("../common/6b_downloadCsv"); |
||||
// let t6c = require("../common/6c_swagger_api");
|
||||
// let t6d = require("../common/6d_language_validation");
|
||||
// let t6e = require("../common/6e_project_operations");
|
||||
let t6f = require("../common/6f_attachments"); |
||||
// let t6g = require("../common/6g_base_share");
|
||||
// let t7a = require("../common/7a_create_project_from_excel");
|
||||
const { |
||||
setCurrentMode, |
||||
} = require("../../support/page_objects/projectConstants"); |
||||
// const t8a = require("../common/8a_webhook");
|
||||
const t9b = require("../common/9b_ERD"); |
||||
|
||||
const nocoTestSuite = (apiType, dbType) => { |
||||
setCurrentMode(apiType, dbType); |
||||
|
||||
// Download CSV
|
||||
t6b.genTest(apiType, dbType); |
||||
|
||||
// Attachment cell
|
||||
t6f.genTest(apiType, dbType); |
||||
|
||||
// ERD:
|
||||
t9b.genTest(apiType, dbType); |
||||
}; |
||||
|
||||
nocoTestSuite("rest", "mysql"); |
||||
|
Loading…
Reference in new issue