Skip to content

Conversation

@mdvorscak
Copy link

Fixes #12

Switched to karma + chrome headless + sinon

package.json Outdated
"mocha": "^3.0.1",
"run-sequence": "^1.2.2"
},
"dependencies": {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these should be devDependencies

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to get rid of "chai" and "mocha" deps? Do the "karma-*" deps cover those?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just tested it, we can get rid of mocha. But chai and sinon are not covered by karma-*


it('can override duration and name', function() {
metric.sendToAnalytics('category_name', 'metric_name', 1234567890);
assert(spy.calledWith('send', 'timing', 'category_name', 'metric_name', 1234567890));
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are testing that the GA api call is made, not that the entries are properly recorded in the PerformanceObserver. Can we keep the tests as is? Think that means removing sinon....?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried leaving it as it was. However, when I first ran the tests they always failed. They were sending the wrong payload, metric.name was always google-analytics.com/analytics.js (or some variation of the GA script address).

The tests were previously more like integration tests and covered part of the internals of GA, which I'm not really sure is necessary. Since GA is a 'soft' peer dependency, as long as GA behaves then we shouldn't care except that we call the interface correctly.

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

Successfully merging this pull request may close these issues.

2 participants