Skip to content

Commit

Permalink
This test has healthy but different errors after the change
Browse files Browse the repository at this point in the history
  • Loading branch information
kennsippell committed Nov 7, 2024
1 parent 8982e4b commit 9930afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/app-forms.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ describe('forms that have caused bugs', () => {
it('#234 - datetime field fails enketo validation', async () => {
const result = await harness.fillForm('bug_234', ['2023-01-01 x']);
expect(result.errors).to.not.be.empty;
expect(result.errors[1].msg).to.eq('enketo.constraint.required');
expect(result.errors[0].msg).to.eq('enketo.constraint.required');
});

it('#249 - time field with correct input format', async () => {
Expand Down

0 comments on commit 9930afe

Please sign in to comment.