1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-09-11 18:27:21 +03:00
leon/scripts/test-module.js
2021-12-27 17:09:12 +08:00

30 lines
795 B
JavaScript

import { command } from 'execa'
import log from '@/helpers/log'
import loader from '@/helpers/loader'
/**
* Specific module testing script
*
* npm run test:module videodownloader:youtube
*/
(async () => {
const { argv } = process
const s = argv[2].toLowerCase()
const arr = s.split(':')
const [pkg, module] = arr
try {
loader.start()
await command('npm run train en', { shell: true })
const cmd = await command(`cross-env PIPENV_PIPFILE=bridges/python/Pipfile LEON_NODE_ENV=testing jest --silent --config=./test/e2e/modules/e2e.modules.jest.json packages/${pkg}/test/${module}.spec.js && npm run train`, { shell: true })
log.default(cmd.stdout)
log.default(cmd.stderr)
loader.stop()
} catch (e) {
log.default(e.message)
loader.stop()
}
})()