42 lines
1006 B
JavaScript
42 lines
1006 B
JavaScript
import minimist from 'minimist'
|
|
import { nextDev } from 'next/dist/cli/next-dev.js'
|
|
import { dirname, resolve } from 'path'
|
|
import { fileURLToPath } from 'url'
|
|
import open, { openApp, apps } from 'open'
|
|
|
|
import { createTestHooks } from './testHooks.js'
|
|
|
|
const _filename = fileURLToPath(import.meta.url)
|
|
const _dirname = dirname(_filename)
|
|
|
|
process.env.PAYLOAD_DROP_DATABASE = 'true'
|
|
|
|
const {
|
|
_: [testSuiteArg],
|
|
...args
|
|
} = minimist(process.argv.slice(2))
|
|
|
|
if (args.turbo === true) {
|
|
process.env.TURBOPACK = '1'
|
|
}
|
|
|
|
process.env.PAYLOAD_DROP_DATABASE = 'true'
|
|
|
|
const { afterTest, beforeTest } = await createTestHooks(testSuiteArg)
|
|
await beforeTest()
|
|
|
|
const rootDir = resolve(_dirname, '../')
|
|
|
|
// Open the admin if the -o flag is passed
|
|
if (args.o) {
|
|
await open('http://localhost:3000/admin')
|
|
}
|
|
// @ts-expect-error
|
|
await nextDev({ port: process.env.PORT || 3000, dirname: rootDir }, 'default', rootDir)
|
|
|
|
// On cmd+c, clean up
|
|
process.on('SIGINT', async () => {
|
|
await afterTest()
|
|
process.exit(0)
|
|
})
|