Laravel TestTools

Chrome extension to generate Laravel integration tests while using your app.

Cos'è Laravel TestTools?

Laravel TestTools è un'estensione di Chrome sviluppata da Marcel Pociot, e la sua funzione principale è "Chrome extension to generate Laravel integration tests while using your app.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Laravel TestTools

Scarica i file di estensione Laravel TestTools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Create your Laravel integration tests while you surf on your website.

Important note: If you want to use the new "Import Factories" feature, you need to manually allow the chrome extension to access file URLs.
You can do so by visiting chrome://extensions , search for the "Laravel TestTools" extension and activate the checkbox "Allow access to file URLs".                    

Informazioni di Base sull'Estensione

Nome Laravel TestTools Laravel TestTools
ID ddieaepnbjhgcbddafciempnibnfnakl
URL Ufficiale https://chromewebstore.google.com/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl
Descrizione Chrome extension to generate Laravel integration tests while using your app.
Dimensione del File 449 KB
Conteggio Installazioni 20,000
Versione Corrente 0.3.1
Ultimo Aggiornamento 2018-06-27
Data di Pubblicazione 2018-06-27
Valutazione 4.85/5 Totale 67 Valutazioni
Sviluppatore Marcel Pociot
Tipo di Pagamento free
Sito Web dell'Estensione http://marcelpociot.de/blog/2016-03-21-laravel-testtools
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Laravel TestTools",
    "description": "Chrome extension to generate Laravel integration tests while using your app.",
    "version": "0.3.1",
    "devtools_page": "html\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "",
        "contextMenus",
        "storage",
        "clipboardWrite"
    ]
}