Examin
A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications
Examin क्या है?
Examin examindev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Examin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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'" } |