We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26bef6a commit e1d8267Copy full SHA for e1d8267
1 file changed
packages/test/config/integration.setup.js
@@ -4,7 +4,7 @@
4
* Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
5
*/
6
var fs = require('fs');
7
-var propertiesReader = require('properties-reader');
+const { propertiesReader } = require('properties-reader');
8
const netrc = require('./netrc');
9
const util = require('util');
10
@@ -53,7 +53,7 @@ function getTestProperties() {
53
// Apply TeamCity build properties, if present
54
if (propFile) {
55
if (fs.existsSync(propFile)) {
56
- const properties = propertiesReader(propFile);
+ const properties = propertiesReader({ sourceFile: propFile });
57
58
const serverPropName = 'labkey.server';
59
const propServer = properties.get(serverPropName);
0 commit comments