mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-03 23:09:17 -05:00
chore: rename class
This commit is contained in:
parent
582b19d02f
commit
f5c3b796f2
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
require('@babel/register')({
|
require('@babel/register')({
|
||||||
extensions: [".ts", ".js"]
|
extensions: [".ts", ".js"]
|
||||||
});
|
});
|
||||||
module.exports = require('./setup/test_environment');
|
module.E2ECliTestEnvironment = require('./setup/test_environment');
|
||||||
|
|
|
@ -6,7 +6,7 @@ const __global = require('../utils/global');
|
||||||
// import { npm } from '../utils/process';
|
// import { npm } from '../utils/process';
|
||||||
|
|
||||||
|
|
||||||
class PuppeteerEnvironment extends NodeEnvironment {
|
class E2ECliTestEnvironment extends NodeEnvironment {
|
||||||
constructor(config) {
|
constructor(config) {
|
||||||
super(config)
|
super(config)
|
||||||
}
|
}
|
||||||
|
@ -25,4 +25,4 @@ class PuppeteerEnvironment extends NodeEnvironment {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default PuppeteerEnvironment;
|
export default E2ECliTestEnvironment;
|
||||||
|
|
Loading…
Add table
Reference in a new issue