Skip to content

Commit

Permalink
dev: Restore
Browse files Browse the repository at this point in the history
  • Loading branch information
ryaplots committed Dec 17, 2024
1 parent 2cc6a79 commit 24039b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cypress/plugins/tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ const sqlTask = on => {
},
dropAndSeedDatabase: async () => {
const exec = util.promisify(childProcess.exec)
await Promise.all([exec('tools/bin/mage dev:sqlRestore', { cwd: '..' })])
await Promise.all([
exec('tools/bin/mage dev:sqlRestore', { cwd: '..' }),
exec('tools/bin/mage dev:redisFlush', { cwd: '..' }),
])
return null
},
})
Expand Down

0 comments on commit 24039b1

Please sign in to comment.