mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
ae2cb5fe68
* Make delete routes work. We put a little form in the modal that spoofs the delete field. * Fix route on creating a user. * Fix redundant id parameter. * Port acceptance tests to new urls.
25 lines
859 B
PHP
25 lines
859 B
PHP
<?php
|
|
$I = new AcceptanceTester($scenario);
|
|
AcceptanceTester::test_login($I);
|
|
$I->am('logged in user');
|
|
$I->wantTo('ensure that the locations listing page loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->amOnPage('/locations');
|
|
$I->waitForElement('.table', 5); // secs
|
|
$I->seeNumberOfElements('tr', [5,30]);
|
|
$I->seeInTitle('Locations');
|
|
$I->see('Locations');
|
|
$I->seeInPageSource('/locations/create');
|
|
$I->dontSee('Locations', '.page-header');
|
|
$I->see('Locations', 'h1.pull-left');
|
|
|
|
|
|
/* Create Form */
|
|
$I->wantTo('ensure that the create location form loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->click(['link' => 'Create New']);
|
|
$I->amOnPage('/locations/create');
|
|
$I->dontSee('Create Location', '.page-header');
|
|
$I->see('Create Location', 'h1.pull-left');
|
|
$I->dontSee('<span class="');
|