Skip to content

Commit

Permalink
fix imports in test
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Jan 9, 2025
1 parent 308d7f9 commit d8068b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions packages/all/test/cross-origin-iframe-packer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import type {
eventWithTime,
listenerHandler,
mutationData,
} from '@rrweb/types';
} from '@sentry-internal/rrweb-types';
import { unpack } from '@rrweb/packer';
import * as fs from 'fs';
import * as path from 'path';
import type * as puppeteer from 'puppeteer';
import type { recordOptions } from 'rrweb';
import type {} from '@rrweb/types';
import { EventType } from '@rrweb/types';
import type { recordOptions } from '@sentry-internal/rrweb';
import type {} from '@sentry-internal/rrweb-types';
import { EventType } from '@sentry-internal/rrweb-types';
import {
assertSnapshot,
getServerURL,
Expand Down
4 changes: 2 additions & 2 deletions packages/all/test/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NodeType } from 'rrweb-snapshot';
import { NodeType } from '@sentry-internal/rrweb-snapshot';
import { expect } from 'vitest';
import {
EventType,
Expand All @@ -8,7 +8,7 @@ import {
mouseInteractionData,
event,
pluginEvent,
} from '@rrweb/types';
} from '@sentry-internal/rrweb-types';
import * as puppeteer from 'puppeteer';
import * as path from 'path';
import * as http from 'http';
Expand Down

0 comments on commit d8068b2

Please sign in to comment.