Deze website werkt beter met JavaScript.
Beginscherm
Verkennen
Help
Inloggen
TheoryOfNekomata
/
formxtra
Volgen
1
Ster
0
Vork
0
Code
Kwesties
0
Pull-aanvragen
0
Publicaties
0
Wiki
Activiteit
Extract and set form values through the DOM—no frameworks required!
https://github.com/TheoryOfNekomata/formxtra
form
utility
values
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10
Commits
1
Branch
1.9 MiB
Tree:
b5961cd461
master
Branches
Labels
${ item.name }
Maak branch
${ searchTerm }
van 'b5961cd461'
${ noResults }
formxtra
/
jest.config.js
jest.config.js
50 B
Ruw
Normale weergave
Geschiedenis
Implement tests Use custom JSDOM apart from Jest's built-in JSDOM instance because we need to test different kinds of documents. We will need to address problems with types, e.g. for `RadioNodeList` because the runner could not find its declaration (for both our custom and built-in JSDOM instances).
3 jaren geleden
Unify tests Attempt to unify tests for Jest and Cypress.
3 jaren geleden
Implement tests Use custom JSDOM apart from Jest's built-in JSDOM instance because we need to test different kinds of documents. We will need to address problems with types, e.g. for `RadioNodeList` because the runner could not find its declaration (for both our custom and built-in JSDOM instances).
3 jaren geleden
1
2
3
module.exports = {
testEnvironment: 'jsdom',
};