Skip to content

Commit

Permalink
do not run on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-fernandez committed Oct 30, 2024
1 parent 9d9f7dd commit bcd2b3e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ describe('test visibility with dynamic instrumentation', () => {
})

it('can grab local variables', (done) => {
// Dynamic Instrumentation - Test Visibility not currently supported for windows
if (process.platform === 'win32') {
done()
return
}
childProcess = fork(path.join(__dirname, 'target-app', 'test-visibility-dynamic-instrumentation-script.js'))

childProcess.on('message', ({ snapshot: { language, stack, probe, captures }, snapshotId }) => {
Expand Down

0 comments on commit bcd2b3e

Please sign in to comment.