このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
TheoryOfNekomata
/
formxtra
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
Extract and set form values through the DOM—no frameworks required!
https://github.com/TheoryOfNekomata/formxtra
form
utility
values
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
15
コミット
1
ブランチ
1.9 MiB
ツリー:
4455d9c827
master
ブランチ
タグ
${ item.name }
ブランチ
${ searchTerm }
を作成
'4455d9c827' から
${ noResults }
formxtra
/
jest.config.js
jest.config.js
50 B
Raw
通常表示
履歴
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',
};