diff --git a/tests/page-templates/30-same-site-cookie/11-strict-config-override-in-current-window.html b/tests/page-templates/30-same-site-cookie/11-strict-config-override-in-current-window.html deleted file mode 100644 index 0cea67ed6..000000000 --- a/tests/page-templates/30-same-site-cookie/11-strict-config-override-in-current-window.html +++ /dev/null @@ -1,14 +0,0 @@ -<%= header %> -<%= boomerangScript %> - - -<%= footer %> \ No newline at end of file diff --git a/tests/page-templates/30-same-site-cookie/11-strict-config-override-in-current-window.js b/tests/page-templates/30-same-site-cookie/11-strict-config-override-in-current-window.js deleted file mode 100644 index c9a379dc8..000000000 --- a/tests/page-templates/30-same-site-cookie/11-strict-config-override-in-current-window.js +++ /dev/null @@ -1,18 +0,0 @@ -/*eslint-env mocha*/ -/*global BOOMR_test,assert*/ - -describe("e2e/30-same-site-cookie/11-strict-config-override-in-current-window", function() { - - it("Created RT Cookie with SameSite=Strict", function() { - var cookie = BOOMR.utils.getSubCookies(BOOMR.utils.getCookie("RT")); - assert.isDefined(cookie.si, "Session id read"); - }); - - it("Should have cookie attributes SameSite=Strict", function() { - var SameSiteAttributeParts = BOOMR.utils.getSameSiteAttributeParts(); - - assert.equal(SameSiteAttributeParts.length, 1); - assert.equal(SameSiteAttributeParts[0], "SameSite=Strict"); - }); - -}); diff --git a/tests/page-templates/30-same-site-cookie/12-strict-secure-attribute-config-override-in-current-window.html b/tests/page-templates/30-same-site-cookie/12-strict-secure-attribute-config-override-in-current-window.html deleted file mode 100644 index abea15ca9..000000000 --- a/tests/page-templates/30-same-site-cookie/12-strict-secure-attribute-config-override-in-current-window.html +++ /dev/null @@ -1,15 +0,0 @@ -<%= header %> -<%= boomerangScript %> - - -<%= footer %> \ No newline at end of file diff --git a/tests/page-templates/30-same-site-cookie/12-strict-secure-attribute-config-override-in-current-window.js b/tests/page-templates/30-same-site-cookie/12-strict-secure-attribute-config-override-in-current-window.js deleted file mode 100644 index 4ce28133d..000000000 --- a/tests/page-templates/30-same-site-cookie/12-strict-secure-attribute-config-override-in-current-window.js +++ /dev/null @@ -1,18 +0,0 @@ -/*eslint-env mocha*/ -/*global BOOMR_test,assert*/ - -describe("e2e/30-same-site-cookie/12-strict-secure-attribute-config-override-in-current-window", function() { - - it("Created RT Cookie with SameSite=Strict", function() { - var cookie = BOOMR.utils.getSubCookies(BOOMR.utils.getCookie("RT")); - assert.isDefined(cookie.si, "Session id read"); - }); - - it("Should have cookie attributes SameSite=Strict", function() { - var SameSiteAttributeParts = BOOMR.utils.getSameSiteAttributeParts(); - - assert.equal(SameSiteAttributeParts.length, 1); - assert.equal(SameSiteAttributeParts[0], "SameSite=Strict"); - }); - -});