Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/bun/src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function getDefaultIntegrations(_options: Options): Integration[] {
* @example
* ```
*
* const { addBreadcrumb } = require('@sentry/node-experimental');
* const { addBreadcrumb } = require('@sentry/node');
* addBreadcrumb({
* message: 'My Breadcrumb',
* // ...
Expand All @@ -76,7 +76,7 @@ export function getDefaultIntegrations(_options: Options): Integration[] {
* @example
* ```
*
* const Sentry = require('@sentry/node-experimental');
* const Sentry = require('@sentry/node');
* Sentry.captureMessage('Hello, world!');
* Sentry.captureException(new Error('Good bye'));
* Sentry.captureEvent({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { BigQuery } from '@google-cloud/bigquery';
import * as nock from 'nock';

import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '@sentry/core';
import { NodeClient, createTransport, setCurrentClient } from '@sentry/node-experimental';
import { NodeClient, createTransport, setCurrentClient } from '@sentry/node';
import { googleCloudHttpIntegration } from '../../src/integrations/google-cloud-http';

const mockSpanEnd = jest.fn();
Expand Down