Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit f7fc216

Browse files
author
Julio Farah
authored
Fix typo on test (#152)
* 3.13.5 * Fix typo on test * bump history
1 parent bdc86fb commit f7fc216

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 3.13.5 / 2020-06-08
2+
3+
- refactor: improve typescript support
4+
15
# 3.13.4 / 2020-06-02
26

37
- refactor: enable typescript support

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@segment/analytics.js-core",
33
"author": "Segment <[email protected]>",
4-
"version": "3.13.4",
4+
"version": "3.13.5",
55
"description": "The hassle-free way to integrate analytics into any web application.",
66
"keywords": [
77
"analytics",

test/normalize.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ describe('normalize', function() {
4747
it('should move all other keys to context', function() {
4848
opts.context = { foo: 1 };
4949
opts.campaign = { name: 'campaign-name' };
50-
opts.buildrary = 'analytics-wordpress';
50+
opts.library = 'analytics-wordpress';
5151
opts.traits = { trait: true };
5252
var normalized = normalize(msg, list);
5353

@@ -58,7 +58,7 @@ describe('normalize', function() {
5858
integrations: {},
5959
context: {
6060
campaign: { name: 'campaign-name' },
61-
buildrary: 'analytics-wordpress',
61+
library: 'analytics-wordpress',
6262
traits: { trait: true },
6363
foo: 1
6464
}

0 commit comments

Comments
 (0)