0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-27 22:59:51 -05:00
verdaccio/test/src/verdaccio-server.js
Juan Picado @jotadeveloper 9807e21dee
test: add e2e support
2018-02-09 08:42:34 +01:00

17 lines
430 B
JavaScript

// @flow
import type {IVerdaccioConfig} from '../flow/types';
export class VerdaccioConfig implements IVerdaccioConfig {
storagePath: string;
configPath: string;
domainPath: string;
port: number;
constructor(storagePath: string, configPath: string, domainPath: string, port: number) {
this.storagePath = storagePath;
this.configPath = configPath;
this.domainPath = domainPath;
this.port = port;
}
}