Laravel TestTools

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

O que é Laravel TestTools?

Laravel TestTools é uma extensão do Chrome desenvolvida por Marcel Pociot, e sua principal característica é "Chrome extension to generate Laravel integration tests while using your app.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Laravel TestTools

Baixe arquivos de extensão Laravel TestTools 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

                        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".                    

Informações Básicas da Extensão

Nome Laravel TestTools Laravel TestTools
ID ddieaepnbjhgcbddafciempnibnfnakl
URL Oficial https://chromewebstore.google.com/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl
Descrição Chrome extension to generate Laravel integration tests while using your app.
Tamanho do Arquivo 449 KB
Contagem de Instalações 20,000
Versão Atual 0.3.1
Última Atualização 2018-06-27
Data de Publicação 2018-06-27
Classificação 4.85/5 Total de 67 Avaliações
Desenvolvedor Marcel Pociot
Tipo de Pagamento free
Site da Extensão http://marcelpociot.de/blog/2016-03-21-laravel-testtools
Idiomas Suportados 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"
    ]
}