Skip to content

Commit

Permalink
chore(NA): investigate path resolve result #2
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Oct 14, 2021
1 parent eea42f9 commit 988f5ba
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ const Path = require('path');

const { REPO_ROOT } = require('@kbn/dev-utils');

const KIBANA_ROOT = Path.resolve(__dirname, '../../../../../');

console.log(Path.resolve(REPO_ROOT, 'test'));
console.log(require('fs').realpathSync(Path.resolve(REPO_ROOT, 'test')));
console.log(Path.resolve(KIBANA_ROOT, 'test'));
throw new Error('FAIL CI');

// modifies all future calls to require() to automatically
Expand Down

0 comments on commit 988f5ba

Please sign in to comment.