Laravel TestTools

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

ما هو Laravel TestTools؟

Laravel TestTools هو إضافة Chrome تم تطويرها بواسطة Marcel Pociot، والميزة الرئيسية لها هي "Chrome extension to generate Laravel integration tests while using your app.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Laravel TestTools

قم بتنزيل ملفات الامتداد Laravel TestTools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}