Skip to content

Commit

Permalink
fix: fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerre committed Feb 11, 2023
1 parent c57eb65 commit 6e7f059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/validate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ describe('Validator', () => {
expect(errors).toBeDefined();
expect(errors.length).toBeGreaterThanOrEqual(testData.length);
removeAllValidationErrors();
const errs = document.querySelectorAll('validation-errors');
const errs = document.querySelectorAll('validation-error');
expect(errs.length).toBe(0);
const msgs = document.querySelectorAll('validation-error-message');
expect(msgs.length).toBe(0);
Expand Down

0 comments on commit 6e7f059

Please sign in to comment.