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.
27 lines
721 B
27 lines
721 B
2 years ago
|
import 'mocha';
|
||
|
import authTests from './tests/auth.test';
|
||
2 years ago
|
import orgTests from './tests/org.test';
|
||
2 years ago
|
import projectTests from './tests/project.test';
|
||
2 years ago
|
import columnTypeSpecificTests from './tests/columnTypeSpecific.test';
|
||
2 years ago
|
import tableTests from './tests/table.test';
|
||
2 years ago
|
import tableRowTests from './tests/tableRow.test';
|
||
2 years ago
|
import viewRowTests from './tests/viewRow.test';
|
||
2 years ago
|
import attachmentTests from './tests/attachment.test';
|
||
2 years ago
|
import filterTest from './tests/filter.test';
|
||
2 years ago
|
|
||
2 years ago
|
function restTests() {
|
||
2 years ago
|
authTests();
|
||
2 years ago
|
orgTests();
|
||
2 years ago
|
projectTests();
|
||
|
tableTests();
|
||
|
tableRowTests();
|
||
|
viewRowTests();
|
||
2 years ago
|
columnTypeSpecificTests();
|
||
2 years ago
|
attachmentTests();
|
||
2 years ago
|
filterTest();
|
||
2 years ago
|
}
|
||
2 years ago
|
|
||
2 years ago
|
export default function () {
|
||
|
describe('Rest', restTests);
|
||
2 years ago
|
}
|