Skip to content

Commit

Permalink
test: add comment why tests are skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
pichlermarc committed Nov 14, 2024
1 parent 597c9b2 commit 903935d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ describe('when loading esm module', function () {
});

it('should unwrap a patched function', async function () {
// Test skipped due to https://github.com/nodejs/import-in-the-middle/pull/153 breaking unwrap functionality
this.skip();
instrumentationWrap.enable();
// disable to trigger unwrap
Expand All @@ -178,6 +179,7 @@ describe('when loading esm module', function () {
});

it('should unwrap multiple functions with massunwrap', async function () {
// Test skipped due to https://github.com/nodejs/import-in-the-middle/pull/153 breaking unwrap functionality
this.skip();
const instrumentation = new TestInstrumentationMasswrapFn({
enabled: false,
Expand All @@ -198,6 +200,7 @@ describe('when loading esm module', function () {
});

it('should unwrap a patched function from a file with absolute path', async function () {
// Test skipped due to https://github.com/nodejs/import-in-the-middle/pull/153 breaking unwrap functionality
this.skip();
const instrumentation = new TestAbsoluteFileInstrumentationPatchFn({
enabled: false,
Expand Down

0 comments on commit 903935d

Please sign in to comment.