Skip to content

Commit

Permalink
test: adjust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed Sep 22, 2023
1 parent a4bbf3f commit 2539400
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ describe('features/decision-rules', function() {
const editor = queryEditor('[data-element-id="unaryTest_1"]', testContainer);

// then
expect(editor.textContent).to.eql('-');
expect(editor.matches('[data-placeholder="-"]')).to.be.true;
}));


Expand All @@ -362,7 +362,7 @@ describe('features/decision-rules', function() {
const editor = queryEditor('[data-element-id="outputEntry_1"]', testContainer);

// then
expect(editor.textContent).to.eql('');
expect(editor.matches('[data-placeholder="-"]')).to.be.false;
}));

});
Expand Down

0 comments on commit 2539400

Please sign in to comment.