Sort tests in javascript and php folders
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org> Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
This commit is contained in:
parent
18e2e9145b
commit
b4833a9dce
14 changed files with 7 additions and 7 deletions
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<phpunit bootstrap="tests/bootstrap.php"
|
<phpunit bootstrap="tests/php/bootstrap.php"
|
||||||
verbose="true"
|
verbose="true"
|
||||||
colors="true"
|
colors="true"
|
||||||
timeoutForSmallTests="900"
|
timeoutForSmallTests="900"
|
||||||
timeoutForMediumTests="900"
|
timeoutForMediumTests="900"
|
||||||
timeoutForLargeTests="900">
|
timeoutForLargeTests="900">
|
||||||
<testsuite name='Tasks app integration tests'>
|
<testsuite name='Tasks app integration tests'>
|
||||||
<directory>./tests/integration</directory>
|
<directory>./tests/php/integration</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<!-- filters for code coverage -->
|
<!-- filters for code coverage -->
|
||||||
<filter>
|
<filter>
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<phpunit bootstrap="tests/bootstrap.php"
|
<phpunit bootstrap="tests/php/bootstrap.php"
|
||||||
verbose="true"
|
verbose="true"
|
||||||
colors="true"
|
colors="true"
|
||||||
timeoutForSmallTests="900"
|
timeoutForSmallTests="900"
|
||||||
timeoutForMediumTests="900"
|
timeoutForMediumTests="900"
|
||||||
timeoutForLargeTests="900">
|
timeoutForLargeTests="900">
|
||||||
<testsuite name='Tasks app tests'>
|
<testsuite name='Tasks app tests'>
|
||||||
<directory>./tests/unit</directory>
|
<directory>./tests/php/unit</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<!-- filters for code coverage -->
|
<!-- filters for code coverage -->
|
||||||
<filter>
|
<filter>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import Task from '../../src/models/task'
|
import Task from '../../../../src/models/task'
|
||||||
|
|
||||||
describe('task', () => {
|
describe('task', () => {
|
||||||
'use strict'
|
'use strict'
|
|
@ -1,6 +1,6 @@
|
||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
import MockDate from 'mockdate'
|
import MockDate from 'mockdate'
|
||||||
import { sort } from '../../src/store/storeHelper'
|
import { sort } from '../../../../src/store/storeHelper'
|
||||||
|
|
||||||
global.moment = moment
|
global.moment = moment
|
||||||
|
|
|
@ -9,4 +9,4 @@
|
||||||
* @copyright Bernhard Posselt 2016
|
* @copyright Bernhard Posselt 2016
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once __DIR__ . '/../../../tests/bootstrap.php';
|
require_once __DIR__ . '/../../../../tests/bootstrap.php';
|
Loading…
Reference in a new issue