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”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Examin
ID ihhopbmcfgkpjklemfdbhgingabdkcpe
官方網址 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'"
}