We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c63a640 commit bea1635Copy full SHA for bea1635
src/sdk.spec.ts
@@ -66,7 +66,7 @@ it('should call sendForm and throw non-form element error', () => {
66
});
67
68
it('should call sendForm with id selector', async () => {
69
- let form: HTMLFormElement = document.createElement('form');
+ const form: HTMLFormElement = document.createElement('form');
70
form.id = 'form-id';
71
document.body.appendChild(form);
72
@@ -84,7 +84,7 @@ it('should call sendForm with id selector', async () => {
84
85
86
it('should call sendForm with form element', async () => {
87
88
89
try {
90
const result = await emailjs.sendForm(
0 commit comments