1
0
mirror of https://github.com/flarum/core.git synced 2025-08-24 00:53:27 +02:00

Add automated tests for flarum/testing

This commit is contained in:
Alexander Skvortsov
2021-04-07 15:01:55 -04:00
committed by SychO9
parent 1fbf5fd029
commit 9ed29cd35e
13 changed files with 243 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
{
"name": "flarum/testing-tests",
"description": "Minimal extension to test the flarum/testing package",
"type": "flarum-extension",
"require": {
"flarum/core": "^0.1.0-beta.16"
},
"require-dev": {
"flarum/testing": "*@dev"
},
"autoload-dev": {
"psr-4": {
"Flarum\\Testing\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@test:unit",
"@test:integration"
],
"test:unit": "phpunit -c tests/phpunit.unit.xml",
"test:integration": "phpunit -c tests/phpunit.integration.xml",
"test:setup": "@php tests/integration/setup.php"
},
"scripts-descriptions": {
"test": "Runs all tests.",
"test:unit": "Runs all unit tests.",
"test:integration": "Runs all integration tests.",
"test:setup": "Sets up a database for use with integration tests. Execute this only once."
},
"repositories": [{
"type": "path",
"url": "../"
}]
}