mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
fe60eab99c
* test: enable e2e * test: improve setup * chore: update setup * test: publish on temp folder * chore: initial setup example * chore: add global install to pnpm * chore: update test script * test: add info command * chore: add install tests * chore: add debug enabled code * chore: update pnpm lock file
15 lines
478 B
JavaScript
15 lines
478 B
JavaScript
const { defaults } = require('jest-config');
|
|
const config = require('../../jest/config');
|
|
|
|
module.exports = Object.assign({}, config, {
|
|
name: 'verdaccio-e2e-cli-jest',
|
|
verbose: true,
|
|
collectCoverage: false,
|
|
moduleFileExtensions: [...defaults.moduleFileExtensions, 'ts'],
|
|
testEnvironment: './env_babel.js',
|
|
globalSetup: './env_setup.js',
|
|
globalTeardown: './env_teardown.js',
|
|
// testRegex: '(/test/e2e.*\\.spec)\\.ts',
|
|
testRegex: '(/test_bk/*.*.spec)\\.ts',
|
|
});
|