Пожалуйста, включите JavaScript.
Главная
Обзор
Помощь
Вход
TheoryOfNekomata
/
formxtra
Следить
1
В избранное
0
Форкнуть
0
Код
Задачи
0
Pull Request'ы
0
Релизы
0
Вики
Активность
Extract and set form values through the DOM—no frameworks required!
https://github.com/TheoryOfNekomata/formxtra
form
utility
values
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
19
коммитов
1
ветка
1.9 MiB
Дерево:
1495659990
master
Ветки
Теги
${ item.name }
Создать ветку
${ searchTerm }
из '1495659990'
${ noResults }
formxtra
/
jest.config.js
jest.config.js
50 B
Исходник
Обычный вид
История
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 лет назад
Unify tests Attempt to unify tests for Jest and Cypress.
3 лет назад
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 лет назад
1
2
3
module.exports = {
testEnvironment: 'jsdom',
};