Skip to content

Commit

Permalink
postrelease: 0.17.0 (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
t2t2 authored Apr 17, 2024
1 parent f8017a8 commit 87947cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/web/integration-tests/tests/cdn/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ module.exports = {
);
await browser.assert.strictEqual(
rumScriptFetchSpan.tags['splunk.rumVersion'],
'0.16.5'
'0.17.0'
);
},
};
4 changes: 3 additions & 1 deletion packages/web/integration-tests/tests/cookies/cookies.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ module.exports = {
}
},
'setting cookieDomain via config sets it on subdomains also': async function(browser) {
if (isBrowser(browser, 'chrome')) {
// chrome: too old to remember
// edge: doesnt' work in saucelab right now for some reason?
if (isBrowser(browser, { chrome: true, microsoftedge: true })) {
return;
}
/*
Expand Down
2 changes: 1 addition & 1 deletion packages/web/integration-tests/utils/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ limitations under the License.
* * {chrome: {max: 79}} (chrome ... - 79)
* * {chrome: {min: 70, max: 79}} (chrome 70 - 79)
*
* @typedef {'chrome' | 'edge' | 'firefox' | 'ie' | 'safari'} BrowserName
* @typedef {'chrome' | 'microsoftedge' | 'firefox' | 'ie' | 'safari'} BrowserName
* @typedef {{min?: number; max?: number}} VersionCondition
* @typedef {{[x in BrowserName]?: number | VersionCondition}} BrowsersCondition
* @param {import('nightwatch').NightwatchBrowser} browser Nightwatch browser object
Expand Down

0 comments on commit 87947cf

Please sign in to comment.