Browse Source

fix/Enabled all tests

pull/3358/head
Muhammed Mustafa 2 years ago
parent
commit
ac512106a4
  1. 4
      packages/nocodb/tests/unit/model/tests/baseModelSql.test.ts
  2. 4
      packages/nocodb/tests/unit/rest/tests/tableRow.test.ts

4
packages/nocodb/tests/unit/model/tests/baseModelSql.test.ts

@ -200,7 +200,7 @@ function baseModelSqlTests() {
});
});
it.only('Delete record', async () => {
it('Delete record', async () => {
const request = {
clientIp: '::ffff:192.0.0.1',
user: {email: 'test@example.com'},
@ -496,5 +496,5 @@ function baseModelSqlTests() {
}
export default function () {
describe.only('BaseModelSql', baseModelSqlTests);
describe('BaseModelSql', baseModelSqlTests);
}

4
packages/nocodb/tests/unit/rest/tests/tableRow.test.ts

@ -1847,7 +1847,7 @@ function tableTest() {
}
})
it.only('Delete list hm with existing ref row id with non nullable clause', async () => {
it('Delete list hm with existing ref row id with non nullable clause', async () => {
const rowId = 1;
const rentalListColumn = (await customerTable.getColumns()).find(
(column) => column.title === 'Rental List'
@ -2027,5 +2027,5 @@ function tableTest() {
}
export default function () {
describe.only('TableRow', tableTest);
describe('TableRow', tableTest);
}

Loading…
Cancel
Save