Integrated
Integrated copied to clipboard
Simple, intuitive integration testing with PHPUnit.
Not sure if this should be the id of the form, or the id of the submit button. What do you think? Where possible we prefer to hook our tests...
Hello and thanks for a great package Jeffrey :) I am trying to have a baseUrl like so: ``` https://localhost/project_name/public ``` but all my `$this->visit('...')` return a NotFoundException. Any ideas...
Hi, I just tried to use the new option to pass in cookies to the request, which is really nice-to-have. However, it seems the parameter order is not correct in...
Hello Jeffrey, I've run into trouble on a current test, as I'm trying to test a form that has input arrays. The problem is the fact that the input data...
I have a HTML table with following value. First one Edit Second One Edit I want to select specific one with value Edit. The id is increasing every time so...
Hey I'm running a very simple test: ``` `/** @test */ public function it_reserves_an_event() { $this->post('api/v1/reservations', [ 'first_name' => 'rodrigo', 'last_name' => 'lessa', 'phone_number' => '9543030759', 'date' => '2015-06-18', 'guests'...
I'm trying to test a form which has various onKeyUp and onKeyDown events and also has an Ajax based auto-suggestion text input. Issue 1 - type command only enters one...
I had some problems with multiple forms on one page. I have created a trait to solve this problem https://gist.github.com/jildertmiedema/f028f531d6a823890ea5 If other people like this future can be added to...
When I have a undefined variable in my view I get: ``` 1) TaskManagementTest::addingATodo A GET request to 'http://localhost' failed. Got a 500 code instead. ErrorException on /home/username/todos/storage/framework/views/f8106f990a36ba68910cf43a05c14374 line 10...
My api accepts json and returns json... When I was just using phpunit and Laravel's TestCase I would include the headers and json encoded data with `$this->call()`. Before Integrated (passing):...