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:
Raimund Schlüßler 2019-10-27 20:39:24 +01:00
parent 18e2e9145b
commit b4833a9dce
No known key found for this signature in database
GPG Key ID: 036FA7EB1A599178
14 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="tests/bootstrap.php"
<phpunit bootstrap="tests/php/bootstrap.php"
verbose="true"
colors="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900">
<testsuite name='Tasks app integration tests'>
<directory>./tests/integration</directory>
<directory>./tests/php/integration</directory>
</testsuite>
<!-- filters for code coverage -->
<filter>

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="tests/bootstrap.php"
<phpunit bootstrap="tests/php/bootstrap.php"
verbose="true"
colors="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900">
<testsuite name='Tasks app tests'>
<directory>./tests/unit</directory>
<directory>./tests/php/unit</directory>
</testsuite>
<!-- filters for code coverage -->
<filter>

View File

@ -1,4 +1,4 @@
import Task from '../../src/models/task'
import Task from '../../../../src/models/task'
describe('task', () => {
'use strict'

View File

@ -1,6 +1,6 @@
import moment from 'moment'
import MockDate from 'mockdate'
import { sort } from '../../src/store/storeHelper'
import { sort } from '../../../../src/store/storeHelper'
global.moment = moment

View File

@ -9,4 +9,4 @@
* @copyright Bernhard Posselt 2016
*/
require_once __DIR__ . '/../../../tests/bootstrap.php';
require_once __DIR__ . '/../../../../tests/bootstrap.php';