Examin
A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications
Examinとは何ですか?
Examinはexamindevによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications」です。
拡張機能のスクリーンショット
Examin拡張機能のCRXファイルをダウンロード
Examin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Examin is a Chrome extension that generates React unit tests for your application. Ensure your application renders as expected before adding new features. Examin generates the baseline unit tests and allows developers to customize their tests for their application. Compatibility - Requires React v16.8.0 or higher - Functional components + React hooks - Not yet compatible with component libraries or Context API
拡張機能の基本情報
名前 | Examin |
ID | ihhopbmcfgkpjklemfdbhgingabdkcpe |
公式URL | https://chromewebstore.google.com/detail/examin/ihhopbmcfgkpjklemfdbhgingabdkcpe |
説明 | A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications |
ファイルサイズ | 10.52 MB |
インストール数 | 900 |
現在のバージョン | 1.0.0.2 |
最終更新日 | 2021-05-14 |
公開日 | 2021-05-11 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | examindev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.examin.dev/ |
ヘルプページのURL | https://www.examin.dev/ |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Examin", "description": "A Chrome extension developer tool that generators Jest\/Enzyme render unit tests for React applications", "version": "1.0.0.2", "author": "Ty Doan, Kirsten Yoon, Nicholas Brush, Cliff Assuncao", "manifest_version": 2, "background": { "scripts": [ "bundles\/background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/localhost\/*", "https:\/\/localhost\/*" ], "js": [ "bundles\/content.bundle.js" ] } ], "icons": { "16": "assets\/16.png", "38": "assets\/38.png", "48": "assets\/48.png", "128": "assets\/128.png", "148": "assets\/148.png", "192": "assets\/192.png" }, "web_accessible_resources": [ "bundles\/backend.bundle.js" ], "permissions": [ "http:\/\/localhost\/*", "https:\/\/localhost\/*" ], "externally_connectable": { "matches": [ "http:\/\/localhost\/*", "https:\/\/localhost\/*" ] }, "devtools_page": ".\/devtools.html", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |