Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In Jest: TypeError: analytics_next_1.AnalyticsBrowser is not a constructor #1129

Closed
natezhengbne opened this issue Aug 26, 2024 · 1 comment

Comments

@natezhengbne
Copy link

Got TypeError: analytics_next_1.AnalyticsBrowser is not a constructor when running in Jest

  ● Test suite failed to run

    TypeError: analytics_next_1.AnalyticsBrowser is not a constructor

      1 | import { AnalyticsBrowser } from "@segment/analytics-next";
      2 |
    > 3 | export default new AnalyticsBrowser();

Code:

import { AnalyticsBrowser } from "@segment/analytics-next";

export default new AnalyticsBrowser();

Used const instance = AnalyticsBrowser.load is running well

@natezhengbne
Copy link
Author

My fault,
I forgot to remove the previous mocking stuff as below

jest.mock("@segment/analytics-next", () => {
	return {
		AnalyticsBrowser: {
			load: (settings: any, options: any) => loadMock(settings, options)
		}
	};
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant