only prevent rollback in cypress env

This commit is contained in:
Martin McKeaveney 2022-10-07 18:04:18 +01:00
parent ba50fa56b6
commit 4e04fc84b2
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ exports.revert = async ctx => {
target: appId, target: appId,
}) })
try { try {
if (!env.isTest()) { if (!env.isCypress()) {
// in-memory db stalls on rollback // in-memory db stalls on rollback
await replication.rollback() await replication.rollback()
} }