Laravel TestTools

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

Laravel TestTools क्या है?

Laravel TestTools Marcel Pociot द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension to generate Laravel integration tests while using your app."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Laravel TestTools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Laravel TestTools Laravel TestTools
ID ddieaepnbjhgcbddafciempnibnfnakl
आधिकारिक URL https://chromewebstore.google.com/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl
विवरण Chrome extension to generate Laravel integration tests while using your app.
फ़ाइल का आकार 449 KB
स्थापना संख्या 20,000
वर्तमान संस्करण 0.3.1
अंतिम अपडेट 2018-06-27
प्रकाशन तिथि 2018-06-27
रेटिंग 4.85/5 कुल 67 रेटिंग्स
डेवलपर Marcel Pociot
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://marcelpociot.de/blog/2016-03-21-laravel-testtools
समर्थित भाषाएँ 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"
    ]
}