Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzlopak committed Aug 30, 2024
1 parent 0162239 commit 9f7cb3d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Transform } from "readable-stream";
import { Transform } from "node:stream";

export type LogLevel = "trace" | "debug" | "info" | "warn" | "error" | "fatal";

Expand Down
2 changes: 2 additions & 0 deletions test/cli.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use strict";

const { join: pathJoin } = require("node:path");
const { spawn } = require("node:child_process");
const { createServer } = require("node:http");
Expand Down
4 changes: 3 additions & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use strict";

const { withScope } = require("@sentry/node");
const { Writable } = require("stream");

Expand All @@ -22,7 +24,7 @@ test("API", (t) => {
t.end();
});

t.test("Sentry integation enabled", (t) => {
t.test("Sentry integration enabled", (t) => {
const transform = getTransformStream({
sentryDsn: "http://[email protected]/1234",
});
Expand Down

0 comments on commit 9f7cb3d

Please sign in to comment.