Examin

A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications

Qu'est-ce que Examin ?

Examin est une extension Chrome développée par examindev, et sa fonction principale est "A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Examin

Téléchargez les fichiers d'extension Examin au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Examin Examin
ID ihhopbmcfgkpjklemfdbhgingabdkcpe
URL Officiel https://chromewebstore.google.com/detail/examin/ihhopbmcfgkpjklemfdbhgingabdkcpe
Description A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications
Taille du Fichier 10.52 MB
Nombre d'Installations 900
Version Actuelle 1.0.0.2
Dernière Mise à Jour 2021-05-14
Date de Publication 2021-05-11
Évaluation 5.00/5 Total 5 Évaluations
Développeur examindev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.examin.dev/
URL de la Page d'Aide https://www.examin.dev/
Langues Prises en Charge 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'"
}