React VT

Visual Testing Tool for React Applications

Was ist React VT?

React VT ist eine Chrome-Erweiterung, die von react-vt entwickelt wurde, und ihr Hauptmerkmal ist "Visual Testing Tool for React Applications".

Erweiterungsscreenshots

screenshot

React VT-Erweiterungs-CRX-Datei herunterladen

Laden Sie React VT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Data-driven visual testing library for React developers

React VT presents a live view of the React component structure of your app, along with current state and props.

Users can define assertions and test them in real time while interacting with their application. Once the user is satisfied with their defined tests, they can export their assertions into an Enzyme file.                    

Grundlegende Informationen zur Erweiterung

Name React VT React VT
ID aphjepidficfgphkbggojoemgpmianhi
Offizielle URL https://chromewebstore.google.com/detail/react-vt/aphjepidficfgphkbggojoemgpmianhi
Beschreibung Visual Testing Tool for React Applications
Dateigröße 1.51 MB
Installationsanzahl 1,105
Aktuelle Version 0.3.0
Letztes Update 2017-09-08
Veröffentlichungsdatum 2017-09-08
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler react-vt
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://reactvt.io
Hilfeseite URL https://github.com/ReactVT/react-vt
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "React VT",
    "description": "Visual Testing Tool for React Applications",
    "version": "0.3.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "logo48.png",
        "default_title": "React Visual Testing Tool",
        "default_popup": "popup.html"
    },
    "devtools_page": "devtools.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "devtools.html",
        "panel\/index.html",
        "*.png",
        "*.eot",
        "*.woff",
        "*.woff2",
        "*.ttf",
        "*.svg"
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    }
}