@azure/microsoft-playwright-testing
Version:
Package to integrate your Playwright test suite with Microsoft Playwright Testing service
15 lines • 489 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
class CustomerConfig {
static getInstance() {
if (!CustomerConfig.instance) {
CustomerConfig.instance = new CustomerConfig();
}
return CustomerConfig.instance;
}
}
const customerConfig = CustomerConfig.getInstance();
exports.default = customerConfig;
//# sourceMappingURL=customerConfig.js.map