Skip to content
Snippets Groups Projects
Commit 5d0fdca4 authored by Jure's avatar Jure
Browse files

chore: add ability to restore db state from dump

parent 00fe3c1d
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,8 @@
"start:server-and-client": "start-test server 3000 client",
"test:all": "start-test start:server-and-client 4000 test",
"test": "cypress run",
"build": "NODE_ENV=production pubsweet build"
"build": "NODE_ENV=production pubsweet build",
"seedFromDump": "node scripts/seedFromDump.js"
},
"jest": {
"testEnvironment": "node",
......
const seed = require('./clearAndSeed')
// // const { execSync } = require('child_process')
const path = require('path')
const { readFileSync } = require('fs')
const dumpFile = name =>
path.join(__dirname, '..', 'cypress', 'dumps', `${name}.sql`)
seed(readFileSync(dumpFile(process.argv[2]), 'utf-8'))
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment