Examin
A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications
O que é Examin?
Examin é uma extensão do Chrome desenvolvida por examindev, e sua principal característica é "A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Examin
Baixe arquivos de extensão Examin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Examin |
ID | ihhopbmcfgkpjklemfdbhgingabdkcpe |
URL Oficial | https://chromewebstore.google.com/detail/examin/ihhopbmcfgkpjklemfdbhgingabdkcpe |
Descrição | A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications |
Tamanho do Arquivo | 10.52 MB |
Contagem de Instalações | 900 |
Versão Atual | 1.0.0.2 |
Última Atualização | 2021-05-14 |
Data de Publicação | 2021-05-11 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | examindev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.examin.dev/ |
URL da Página de Ajuda | https://www.examin.dev/ |
Idiomas Suportados | 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'" } |