Skip to content

Commit

Permalink
Fix path to package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
neild3r committed Aug 18, 2021
1 parent 7c7c72c commit 1f60453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class Helper {
public static getDefaultConfig(): object
{
let config = {};
let packageJson = JSON.parse(fs.readFileSync(__dirname + '/../../../package.json').toString());
let packageJson = JSON.parse(fs.readFileSync(__dirname + '/../../package.json').toString());
let props = packageJson.contributes.configuration.properties;
for (var key in props) {
var item = props[key];
Expand Down

0 comments on commit 1f60453

Please sign in to comment.