Skip to content

Commit c69e84e

Browse files
committed
cleanup tests, maybe fix windows fails?
1 parent 2171303 commit c69e84e

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

packages/integration-tests/fixtures/errorhandling/build-esbuild.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import path from "path";
55

66
build({
77
entryPoints: [path.join(__dirname, "input", "bundle.js")],
8-
outdir: "./out/esbuild",
8+
outdir: path.join(__dirname, "out", "esbuild"),
99
plugins: [sentryEsbuildPlugin(pluginOptions)],
1010
minify: true,
1111
bundle: true,

packages/integration-tests/fixtures/errorhandling/error-no-handler.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jest.setTimeout(10_000);
99
describe("Error throwing by default (no errorHandler)", () => {
1010
const FAKE_SENTRY_PORT = "9876";
1111

12-
const sentryServer = spawn("node", ["fakeSentry.js"], {
12+
const sentryServer = spawn("node", [path.join(__dirname, "fakeSentry.js")], {
1313
cwd: __dirname,
1414
stdio: "ignore", // <-- set to "inherit" to get server logs. Deactivated to avoid test logs.
1515
env: { ...process.env, FAKE_SENTRY_PORT },

packages/integration-tests/fixtures/errorhandling/plugin-options-wrong.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)