-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'staging' of github.com:Countly/countly-sdk-js into ligh…
…tboat
- Loading branch information
Showing
6 changed files
with
65 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
## 23.12.1 | ||
## 23.12.2 | ||
|
||
* Added Google Lighthouse to bot detection | ||
|
||
## 23.12.1 | ||
|
||
* Added methods for bridged SDK usage | ||
|
||
## 23.12.0 | ||
|
||
* Modularized the Web SDK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* eslint-disable cypress/no-unnecessary-waiting */ | ||
/* eslint-disable require-jsdoc */ | ||
var Countly = require("../../Countly.js"); | ||
import { SDK_NAME, SDK_VERSION } from "../../modules/Constants.js"; | ||
// import * as Countly from "../../dist/countly_umd.js"; | ||
var hp = require("../support/helper.js"); | ||
|
||
function initMain(name, version) { | ||
Countly.init({ | ||
app_key: "YOUR_APP_KEY", | ||
url: "https://your.domain.count.ly", | ||
test_mode: true, | ||
debug: true, | ||
sdk_name: name, | ||
sdk_version: version | ||
}); | ||
} | ||
|
||
|
||
// tests | ||
describe("Bridged SDK Utilities Tests", () => { | ||
it("Check if we can override sdk name and version successful", () => { | ||
hp.haltAndClearStorage(() => { | ||
initMain('javascript_gtm_web', '24.0.0'); | ||
hp.events(); | ||
cy.fetch_local_request_queue().then((eq) => { | ||
expect(eq).to.have.length(1); | ||
expect(eq[0].sdk_name).to.equal("javascript_gtm_web"); | ||
expect(eq[0].sdk_version).to.equal("24.0.0"); | ||
}); | ||
}); | ||
}); | ||
it("Check if SDK uses default values if SDK name and version was not overriden", () => { | ||
hp.haltAndClearStorage(() => { | ||
initMain(undefined, undefined); | ||
hp.events(); | ||
cy.fetch_local_request_queue().then((eq) => { | ||
expect(eq).to.have.length(1); | ||
expect(eq[0].sdk_name).to.equal(SDK_NAME); | ||
expect(eq[0].sdk_version).to.equal(SDK_VERSION); | ||
}); | ||
}); | ||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.