Skip to content

Commit 39c9caa

Browse files
committed
Fix imports in mocks
1 parent 0fb9729 commit 39c9caa

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

test/mocks/mockAPM.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ApmNativeModule } from '../../src/native/ApmNativeModule';
1+
import type { ApmNativeModule } from '../../src/native/NativeAPM';
22

33
const mockAPM: ApmNativeModule = {
44
addListener: jest.fn(),

test/mocks/mockBugReporting.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { BugReportingNativeModule } from '../../src/native/BugReportingNativeModule';
1+
import type { BugReportingNativeModule } from '../../src/native/NativeBugReporting';
22

33
const mockBugReporting: BugReportingNativeModule = {
44
addListener: jest.fn(),

test/mocks/mockCrashReporting.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CrashReportingNativeModule } from '../../src/native/CrashReportingNativeModule';
1+
import type { CrashReportingNativeModule } from '../../src/native/NativeCrashReporting';
22

33
const mockCrashReporting: CrashReportingNativeModule = {
44
addListener: jest.fn(),

test/mocks/mockFeatureRequests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { FeatureRequestsNativeModule } from '../../src/native/FeatureRequestsNativeModule';
1+
import type { FeatureRequestsNativeModule } from '../../src/native/NativeFeatureRequests';
22

33
const mockFeatureRequests: FeatureRequestsNativeModule = {
44
addListener: jest.fn(),

test/mocks/mockInstabug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { InstabugNativeModule } from '../../src/native/InstabugNativeModule';
1+
import type { InstabugNativeModule } from '../../src/native/NativeInstabug';
22

33
const mockInstabug: InstabugNativeModule = {
44
addListener: jest.fn(),

test/mocks/mockNativeModules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { InstabugNativePackage } from '../../src/native';
1+
import type { InstabugNativePackage } from '../../src/native/NativePackage';
22
import mockAPM from './mockAPM';
33
import mockBugReporting from './mockBugReporting';
44
import mockCrashReporting from './mockCrashReporting';

test/mocks/mockReplies.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { RepliesNativeModule } from '../../src/native/RepliesNativeModule';
1+
import type { RepliesNativeModule } from '../../src/native/NativeReplies';
22

33
const mockReplies: RepliesNativeModule = {
44
addListener: jest.fn(),

test/mocks/mockSurveys.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { SurveysNativeModule } from '../../src/native/SurveysNativeModule';
1+
import type { SurveysNativeModule } from '../../src/native/NativeSurveys';
22

33
const mockSurveys: SurveysNativeModule = {
44
addListener: jest.fn(),

0 commit comments

Comments
 (0)