codeceptjs
Version:
Supercharged End 2 End Testing Framework for NodeJS
48 lines (39 loc) • 1.25 kB
JavaScript
import { getConfig, printError, getTestRoot, createOutputDir, autoExit } from './utils.js'
import Config from '../config.js'
import store from '../store.js'
import Codecept from '../codecept.js'
export default async function (test, options) {
// registering options globally to use in config
// Backward compatibility for --profile
// TODO: remove in CodeceptJS 4
process.profile = options.profile
if (options.profile) {
process.env.profile = options.profile
}
if (options.verbose || options.debug) store.debugMode = true
const configFile = options.config
let config = await getConfig(configFile)
if (options.override) {
config = Config.append(JSON.parse(options.override))
}
const testRoot = getTestRoot(configFile)
createOutputDir(config, testRoot)
const codecept = new Codecept(config, options)
try {
await codecept.init(testRoot)
await codecept.bootstrap()
codecept.loadTests(test)
if (options.verbose) {
store.debugMode = true
const { getMachineInfo } = await import('./info.js')
await getMachineInfo()
}
await codecept.run()
} catch (err) {
printError(err)
process.exitCode = 1
} finally {
await codecept.teardown()
await autoExit()
}
}