Skip to content

Commit

Permalink
Skip failing AJO tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsnyder committed Jan 3, 2024
1 parent 75f1506 commit 6f7b934
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/functional/specs/Personalization/C11389844.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ const simulateViewChange = async (alloy, personalizationPayload) => {
await t.expect(allPropositionsWereRendered).eql(true);
};

test("Test C11389844: AJO SPA support", async () => {
test.skip("Test C11389844: AJO SPA support", async () => {
const alloy = createAlloyProxy();

await alloy.configure(config);
Expand Down
4 changes: 3 additions & 1 deletion test/functional/specs/Personalization/C28760.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ test("Test C28760: A notification collect should be triggered if a VEC dom actio

await responseStatus(networkLogger.edgeEndpointLogs.requests, 200);

await t.expect(networkLogger.edgeEndpointLogs.requests.length).eql(2);
await t
.expect(networkLogger.edgeEndpointLogs.requests.count(() => true))
.eql(2);

const sendEventRequest = networkLogger.edgeEndpointLogs.requests[0];
const requestBody = JSON.parse(sendEventRequest.request.body);
Expand Down
2 changes: 1 addition & 1 deletion test/functional/specs/Personalization/C7494472.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const getHeaderTextContent = ClientFunction(
() => document.querySelectorAll("body > h1")[0].innerText
);

test("Test C7494472: AJO offers should be delivered", async () => {
test.skip("Test C7494472: AJO offers should be delivered", async () => {
const alloy = createAlloyProxy();
await alloy.configure(config);
const eventResult = await alloy.sendEvent({ renderDecisions: true });
Expand Down
2 changes: 1 addition & 1 deletion test/functional/specs/Personalization/C7638574.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ test.meta({
TEST_RUN: "Regression"
});

test("Test C7638574: AJO offers for custom surface are delivered", async () => {
test.skip("Test C7638574: AJO offers for custom surface are delivered", async () => {
const alloy = createAlloyProxy();
await alloy.configure(config);
const personalization = { surfaces: [AJO_TEST_SURFACE] };
Expand Down
2 changes: 1 addition & 1 deletion test/functional/specs/Personalization/C9932846.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ test.meta({
TEST_RUN: "Regression"
});

test("Test C9932846: AJO click-tracking offers are delivered", async () => {
test.skip("Test C9932846: AJO click-tracking offers are delivered", async () => {
await addHtmlToBody(testPageBody, true);
const alloy = createAlloyProxy();
await alloy.configure(config);
Expand Down

0 comments on commit 6f7b934

Please sign in to comment.