Skip to content

Commit

Permalink
chore: skip test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pichlermarc committed Nov 25, 2024
1 parent dbe118f commit 55bc663
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,10 @@ describe('GrpcExporterTransport', function () {
};

beforeEach(async function () {
// skip uds tests on windows
if (process.platform === 'win32') {
this.skip();
}
shutdownHandle = await startUdsServer(serverTestContext);
});

Expand All @@ -403,11 +407,6 @@ describe('GrpcExporterTransport', function () {
});

it('sends data', async function () {
// skip uds tests on windows
if (process.platform === 'win32') {
this.skip();
}

const transport = createOtlpGrpcExporterTransport({
...simpleClientConfig,
address: 'unix:///tmp/otlp-test.sock',
Expand Down

0 comments on commit 55bc663

Please sign in to comment.