이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
TheoryOfNekomata
/
formxtra
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
Extract and set form values through the DOM—no frameworks required!
https://github.com/TheoryOfNekomata/formxtra
form
utility
values
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15
커밋
1
브렌치
1.9 MiB
트리:
4455d9c827
master
브랜치
태그
${ item.name }
${ searchTerm }
브랜치 생성
from '4455d9c827'
${ noResults }
formxtra
/
jest.config.js
jest.config.js
50 B
Raw
Normal View
히스토리
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',
};