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

Overview

Laravel TestTools

Check out the introduction post about the chrome extension.

Installation

git clone git@github.com:mpociot/laravel-testtools.git

# in case you don't have Grunt yet:
sudo npm install -g grunt-cli

Build instructions

cd laravel-testtools
npm install
grunt

When the grunt command is finished, you can use the build/unpacked-dev/ folder to use as the developer version of the extension.

License

Laravel TestTools is free software distributed under the terms of the MIT license.

Comments
  • Disable vue.js message

    Disable vue.js message

    Hey, the plugin always shows the very annoying vue message in the console.

    Download the Vue Devtools for a better development experience: https://github.com/vuejs/vue-devtools

    Please disable it. The internet says it can be done like this:

    var Vue = require('vue');
    Vue.config.devtools = false;
    
    opened by lukasoppermann 4
  • Generating empty string when button is pressed

    Generating empty string when button is pressed

    I clicked on a button which has Arabic language text:

    <input type="submit" value="سجل">
    

    The recorder did capture it as empty string:

    $this->press('');
    
    hacktoberfest 
    opened by mus-naj 1
  • Chrome App Unresponsive

    Chrome App Unresponsive

    Sorry if this isn't the right place for this ...

    Since the last update, I've noticed that when I tried to use the Laravel TestTools, the screen I get looks like the attached. Clicking on the buttons doesn't seem to do anything.

    screen shot 2016-05-23 at 11 45 44 pm

    opened by shawnveltman 1
  • Record button disappeared in latest release?

    Record button disappeared in latest release?

    I opened up the test tools today, and saw the addition of ability to select the 3 standard options for middleware / database handling (cool!), but my record button seems to be missing.

    Screen shot attached (hopefully!)

    screen shot 2016-04-12 at 4 32 43 pm

    Chrome version Version 49.0.2623.112 (64-bit) Extension version 0.2.0

    opened by shawnCanadream 1
  • Getting TypeError: Failed to fetch

    Getting TypeError: Failed to fetch

    When I installed the extension I'm getting a error in the console.

    Uncaught (in promise) TypeError: Failed to fetch
        at TypeError (native)
    

    Chrome Version 49.0.2623.112 m Extension Version: 0.2.0

    The Version before 0.2.0 which was 0.1.2 works.

    I also tested this extension on a brand new install of vivaldi 1.0 & same problem.

    opened by dragonfire1119 1
  • Issue in renaming tests

    Issue in renaming tests

    • Press Rename Test button
    • Press Cancel button in Rename Test popup

    Expected result: Nothing should be changed in test code Actual result: Test name is changed to "testnull"

    opened by mpociot 1
  • Test Setup wrong call to generate faker

    Test Setup wrong call to generate faker

    I was having a few issues with the generated test code and noticed changing the following fixed it:

    public function setUp() { parent::setUp(); $this->faker = new Faker\Generator(); }

    to

    public function setUp() { parent::setUp(); $this->faker = \Faker\Factory::create(); }

    opened by rossjcooper 0
  • Use CircleCI to automatically build the extension

    Use CircleCI to automatically build the extension

    In order to release updates faster we should integrate CircleCI and use the Chrome Web Store API to upload new extension releases.

    This way commits to the master branch could automatically result in an extension update.

    enhancement 
    opened by mpociot 0
  • Factory not working - nothing happens

    Factory not working - nothing happens

    Import of Laravel's 5.6 default UserFactory.php from database/factories folder worked successfully.

    But when I click on the new menu entry "Factories --> App\User::Class --> Create Model:App\User::class" nothing happens except the test's function body is cleared.

    What should happen? And why it does not?

    <?php
    // UserFactory.php
    use Faker\Generator as Faker;
    
    $factory->define(App\User::class, function (Faker $faker) {
        return [
            'name' => $faker->name,
            'email' => $faker->unique()->safeEmail,
            'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
            'remember_token' => str_random(10),
        ];
    });
    
    opened by X-Coder 0
  • Wrong faker code generation while in dusk mode

    Wrong faker code generation while in dusk mode

    While dusk is enabled, it generates wrong code when a faker option is selected:

    use Tests\DuskTestCase;
    use Laravel\Dusk\Browser;
    
    class LoginTest extends DuskTestCase
    {
        /**
         * @var FakerGenerator
         */
        protected $faker;
        
        /**
         * Setup faker
         */
        public function setUp()
        {
            parent::setUp();
            $this->faker = \Faker\Factory::create();
        }
        /**
         * My test implementation
         */
        public function testHierarchyIsFantastic()
        {
    
            $this->browse(function (Browser $browser) {
                $browser->visit('/login');
                $this->type(email, '$this->faker->email'); // <--bad generated code:
                // $this instead of $browser and apostrophes on wrong argument
            });
    
        }
    }
    

    Expected:

    $browser->type('email', $this->faker->email);
    
    opened by X-Coder 0
  • switch args for select method

    switch args for select method

    Thanks for this extension, I've been enjoying using it. The arguments passed to the select method here are backwards, which has been throwing errors on my end, so I've switched them. (Oddly, the arguments for the other methods in this file also seem backwards, yet the generated code for the others (for example, type) is OK.)

    opened by avrahamappel 2
  • Add LICENSE file

    Add LICENSE file

    There should probably be a LICENSE file that contains a copyright (that has to be kept if people modify the extension according to MIT's terms). Currently there's no copyright statement, so nothing to keep except for the notice in the README?

    opened by kelunik 0
  • require is not defined

    require is not defined

    Hey, I'm using the extension on chrome (v58.0.3029.81, OS: win7) and I got this error: Uncaught ReferenceError: require is not defined at content.js:1. ideas? thx.

    opened by atefBB 0
Releases(0.2.5)
Owner
Marcel Pociot
Marcel Pociot
Run multiple websites using the same Laravel installation while keeping tenant specific data separated for fully independent multi-domain setups, previously github.com/hyn/multi-tenant

The unobtrusive Laravel package that makes your app multi tenant. Serving multiple websites, each with one or more hostnames from the same codebase. B

Tenancy 2.4k Jan 3, 2023
Run multiple websites using the same Laravel installation while keeping tenant specific data separated for fully independent multi-domain setups.

Tenancy for Laravel Enabling awesome Software as a Service with the Laravel framework. This is the successor of hyn/multi-tenant. Feel free to show su

Tenancy 1.1k Dec 30, 2022
Run multiple websites using the same Laravel installation while keeping tenant specific data separated for fully independent multi-domain setups, previously

Run multiple websites using the same Laravel installation while keeping tenant specific data separated for fully independent multi-domain setups, previously

Tenancy 2.4k Jan 3, 2023
Laravel-OvalFi helps you Set up, test, and manage your OvalFi integration directly in your Laravel App.

OvalFi Laravel Package Laravel-OvalFi helps you Set up, test, and manage your OvalFi integration directly in your Laravel App. Installation You can in

Paul Adams 2 Sep 8, 2022
LaravelFly is a safe solution to speeds up new or old Laravel 5.5+ projects, with preloading and coroutine, while without data pollution or memory leak

Would you like php 7.4 Preloading? Would you like php coroutine? Today you can use them with Laravel because of Swoole. With LaravalFly, Laravel will

null 456 Dec 21, 2022
Generator-hedley - Scaffold a headless Drupal backend, Angular app client, and Behat tests

generator-hedley Scaffold a headless Drupal backend, Angular app client, and Behat tests Hedley is a yeoman generator that scaffolds a headless Drupal

null 99 Jun 3, 2022
Livewire component that provides you with a modal that supports multiple child modals while maintaining state.

About LivewireUI Modal LivewireUI Modal is a Livewire component that provides you with a modal that supports multiple child modals while maintaining s

Livewire UI 806 Jan 6, 2023
Livewire component that provides you with a modal that supports multiple child modals while maintaining state.

About Wire Elements Modal Wire Elements Modal is a Livewire component that provides you with a modal that supports multiple child modals while maintai

Wire Elements 806 Jan 6, 2023
Generate trends for your models. Easily generate charts or reports.

Laravel Trend Generate trends for your models. Easily generate charts or reports. Support us Like our work? You can support us by purchasing one of ou

Flowframe 139 Dec 27, 2022
Laravel-veneer - A suite of mocked services to use in your Laravel tests.

Laravel Veneer A suite of fixture data and methods to help make mocking 3rd party services easier. Overview Laravel Veneer aims to solve two problems

Oh See Software 4 Jun 23, 2022
xAPI Integration with Saudi NELC (National Center for e-Learning) for your Laravel app

NELC Laravel Integration xAPI Integration with Saudi NELC (National Center for e-Learning) for your Laravel app Installation You can install the packa

MSAAQ, LLC 2 Sep 15, 2022
Generate form validators for Laravel: an extension of way/generators

Laravel Form Validator Contents Introduction Installation Usage Example Tests Introduction After using Jeffrey Way's Generator and his Validator packa

John Evans 6 Jan 14, 2022
Perform Self-Diagnosis Tests On Your Laravel Application

Perform Self-Diagnosis Tests On Your Laravel Application This package allows you to run self-diagnosis tests on your Laravel application. It comes wit

Beyond Code 1.4k Dec 13, 2022
Testbench Component is the de-facto package that has been designed to help you write tests for your Laravel package

Laravel Testing Helper for Packages Development Testbench Component is the de-facto package that has been designed to help you write tests for your La

Orchestra Platform 1.9k Dec 29, 2022
Boilerplate code for protecting a form with proof of work. Uses javascript in the browser to generate the hashcash and PHP on the server to generate the puzzle and validate the proof of work.

Boilerplate code for protecting a form with proof of work. Uses javascript in the browser to generate the hashcash and PHP on the server to generate the puzzle and validate the proof of work.

Jameson Lopp 28 Dec 19, 2022
This package provides a trait to run your tests against a MinIO S3 server.

Laravel MinIO Testing Tools This package provides a trait to run your tests against a MinIO S3 server. ?? Blog post: https://protone.media/en/blog/how

Protone Media 7 Oct 12, 2022
A simple blog app where a user can signup , login, like a post , delete a post , edit a post. The app is built using laravel , tailwind css and postgres

About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experie

Nahom_zd 1 Mar 6, 2022
Fully customizable and tests supported Laravel admin dashboard for developers.

Laravel Admin dashboard Like Laravel Jetstream but built with Hotwire Turbo + additional perks. Tools used: tailwindcomponents/dashboard Hotwire Turbo

null 12 Nov 1, 2022
Removes whitelisted unnecessary files (like tests/docs etc.) from vendor directory

Composer vendor cleanup This is a simple script for the Composer to remove unnecessary files (documentation/examples/tests etc.) from included vendor

Chris 2 Nov 14, 2022