0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-27 22:59:51 -05:00

chore: rename class

This commit is contained in:
Juan Picado @jotadeveloper 2019-12-15 17:18:40 +01:00
parent 582b19d02f
commit f5c3b796f2
No known key found for this signature in database
GPG key ID: 15AA875EF3768142
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
require('@babel/register')({
extensions: [".ts", ".js"]
});
module.exports = require('./setup/test_environment');
module.E2ECliTestEnvironment = require('./setup/test_environment');

View file

@ -6,7 +6,7 @@ const __global = require('../utils/global');
// import { npm } from '../utils/process';
class PuppeteerEnvironment extends NodeEnvironment {
class E2ECliTestEnvironment extends NodeEnvironment {
constructor(config) {
super(config)
}
@ -25,4 +25,4 @@ class PuppeteerEnvironment extends NodeEnvironment {
}
}
export default PuppeteerEnvironment;
export default E2ECliTestEnvironment;