Skip to content

Commit

Permalink
chore: try to debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fox-john committed Sep 20, 2024
1 parent 69231f8 commit 5af3dfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/src/full-sync.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe("Full Sync", () => {
describe.each(shopContents)("%s", (shopContent) => {
it(`${shopContent} should accept full sync`, async () => {
// arrange
const url = `${testConfig.prestashopUrl}/index.php?fc=module&module=ps_eventbus&controller=apiFront&is_e2e=1&shop_content=${shopContent}&limit=5&full=1&job_id=${jobId}`;
const url = `${testConfig.prestashopUrl}/index.php?fc=module&module=ps_eventbus&controller=apiFront&is_e2e=0&shop_content=${shopContent}&limit=5&full=1&job_id=${jobId}`;

const callId = { call_id: Math.random().toString(36).substring(2, 11) };

Expand Down
2 changes: 1 addition & 1 deletion e2e/src/job-id-validation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe("Reject invalid job-id", () => {
async (shopContent) => {
expect.assertions(6);
// arrange
const url = `${testConfig.prestashopUrl}/index.php?fc=module&module=ps_eventbus&controller=apiFront&is_e2e=1&shop_content=${shopContent}&limit=5&job_id=${jobId}`;
const url = `${testConfig.prestashopUrl}/index.php?fc=module&module=ps_eventbus&controller=apiFront&is_e2e=0&shop_content=${shopContent}&limit=5&job_id=${jobId}`;
const message$ = probe({ params: { id: jobId } });

//act
Expand Down

0 comments on commit 5af3dfa

Please sign in to comment.