refs #5858 test: bad test calls
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2023-12-01 14:06:28 +01:00
parent db06620d7c
commit e3379b42a1
1 changed files with 0 additions and 8 deletions

View File

@ -21,19 +21,11 @@ describe('zone toggleIsIncluded()', () => {
const tx = await models.Zone.beginTransaction({});
try {
let toCheck = await conn.executeStmt({sql: ' SELECT * FROM zoneIncludedCheck'});
expect(toCheck.length).toEqual(0);
const options = {transaction: tx};
let result = await models.Zone.toggleIsIncluded(1, 20, true, options);
expect(result.isIncluded).toBeTrue();
toCheck = await conn.executeStmt({sql: ' SELECT * FROM zoneIncludedCheck'});
expect(toCheck.length).not.toEqual(1);
await conn.executeStmt({sql: 'CALL vn.zoneIncluded_checkCollisions(?, ? )', params: [0, 0]});
await tx.rollback();
} catch (e) {