summaryrefslogtreecommitdiff
path: root/spec/javascripts/raven/index_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/raven/index_spec.js')
-rw-r--r--spec/javascripts/raven/index_spec.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/spec/javascripts/raven/index_spec.js b/spec/javascripts/raven/index_spec.js
new file mode 100644
index 00000000000..a503a54029f
--- /dev/null
+++ b/spec/javascripts/raven/index_spec.js
@@ -0,0 +1,44 @@
+import RavenConfig from '~/raven/raven_config';
+import index from '~/raven/index';
+
+describe('RavenConfig options', () => {
+ const sentryDsn = 'sentryDsn';
+ const currentUserId = 'currentUserId';
+ const gitlabUrl = 'gitlabUrl';
+ const isProduction = 'isProduction';
+ const revision = 'revision';
+ let indexReturnValue;
+
+ beforeEach(() => {
+ window.gon = {
+ sentry_dsn: sentryDsn,
+ current_user_id: currentUserId,
+ gitlab_url: gitlabUrl,
+ revision,
+ };
+
+ process.env.NODE_ENV = isProduction;
+ process.env.HEAD_COMMIT_SHA = revision;
+
+ spyOn(RavenConfig, 'init');
+
+ indexReturnValue = index();
+ });
+
+ it('should init with .sentryDsn, .currentUserId, .whitelistUrls and .isProduction', () => {
+ expect(RavenConfig.init).toHaveBeenCalledWith({
+ sentryDsn,
+ currentUserId,
+ whitelistUrls: [gitlabUrl],
+ isProduction,
+ release: revision,
+ tags: {
+ revision,
+ },
+ });
+ });
+
+ it('should return RavenConfig', () => {
+ expect(indexReturnValue).toBe(RavenConfig);
+ });
+});