Skip to content

Commit

Permalink
update e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
dianabarsan committed Oct 17, 2024
1 parent 7a67aca commit 4c21650
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/e2e/default/targets/target-accuracy.wdio-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,11 @@ describe('Target accuracy', () => {
await commonPage.waitForPageLoaded();

const targets = await analyticsPage.getTargets();
console.log(targets);
expect(targets.length).to.equal(1);
expect(targets[0]).to.deep.include({
title: 'targets.new_persons.title',
goal: '0',
count: '20',
});
});
});

0 comments on commit 4c21650

Please sign in to comment.