Laravel TestTools

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

Laravel TestTools là gì?

Laravel TestTools là một tiện ích mở rộng Chrome được phát triển bởi Marcel Pociot, và tính năng chính của nó là "Chrome extension to generate Laravel integration tests while using your app.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Laravel TestTools

Tải xuống các tệp mở rộng Laravel TestTools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Laravel TestTools Laravel TestTools
ID ddieaepnbjhgcbddafciempnibnfnakl
URL Chính Thức https://chromewebstore.google.com/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl
Mô tả Chrome extension to generate Laravel integration tests while using your app.
Kích Thước Tệp 449 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 0.3.1
Cập Nhật Lần Cuối 2018-06-27
Ngày Phát Hành 2018-06-27
Đánh Giá 4.85/5 Tổng số 67 Đánh Giá
Nhà Phát Triển Marcel Pociot
Loại Thanh Toán free
Trang Web Mở Rộng http://marcelpociot.de/blog/2016-03-21-laravel-testtools
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}