File tree 4 files changed +21
-9
lines changed
4 files changed +21
-9
lines changed Original file line number Diff line number Diff line change
1
+ -------------------------------------------------------------------------------
2
+ 0.1.3
3
+ -------------------------------------------------------------------------------
4
+ * Add environment detection to event builder so it can distinguish between events sent from node or the browser.
5
+ -------------------------------------------------------------------------------
6
+
7
+ -------------------------------------------------------------------------------
8
+ 0.1.2
9
+ -------------------------------------------------------------------------------
10
+ * Add CORS param to prevent browsers from logging cors errors in the console when dispatching events.
11
+ -------------------------------------------------------------------------------
12
+
1
13
-------------------------------------------------------------------------------
2
14
0.1.1
3
15
-------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " optimizely-client-sdk" ,
3
- "version" : " 0.1.2 " ,
3
+ "version" : " 0.1.3 " ,
4
4
"description" : " Javascript SDK for client testing" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
21
21
"dependencies" : {
22
22
"bluebird" : " ^3.4.0" ,
23
23
"lodash" : " ^4.13.1" ,
24
- "optimizely-server-sdk" : " ^0.1.2 "
24
+ "optimizely-server-sdk" : " ^0.1.3 "
25
25
},
26
26
"devDependencies" : {
27
27
"chai" : " ^3.5.0" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ var chai = require('chai');
6
6
var assert = chai . assert ;
7
7
var sinon = require ( 'sinon' ) ;
8
8
9
- describe ( 'optimizely-testing- sdk-javascript ' , function ( ) {
9
+ describe ( 'javascript- sdk' , function ( ) {
10
10
describe ( 'APIs' , function ( ) {
11
11
describe ( 'createInstance' , function ( ) {
12
12
var fakeErrorHandler = { handleError : function ( ) { } } ;
You can’t perform that action at this time.
0 commit comments