src
3 years ago
tests
3 years ago
web
4 years ago
.editorconfig
4 years ago
.gitignore
3 years ago
CHANGELOG.md
3 years ago
LICENSE.txt
4 years ago
README.devel.txt
4 years ago
composer.json
3 years ago
phpunit.xml
3 years ago
phpunit.xml
27 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | |
| 3 | <phpunit backupGlobals="false" |
| 4 | backupStaticAttributes="false" |
| 5 | colors="true" |
| 6 | convertErrorsToExceptions="true" |
| 7 | convertNoticesToExceptions="true" |
| 8 | convertWarningsToExceptions="true" |
| 9 | processIsolation="false" |
| 10 | bootstrap="tests/bootstrap.php" |
| 11 | > |
| 12 | <testsuites> |
| 13 | <testsuite name="JSMin Test Suite"> |
| 14 | <directory>./tests/</directory> |
| 15 | </testsuite> |
| 16 | </testsuites> |
| 17 | |
| 18 | <filter> |
| 19 | <whitelist> |
| 20 | <directory>./</directory> |
| 21 | <exclude> |
| 22 | <directory>./tests</directory> |
| 23 | <directory>./vendor</directory> |
| 24 | </exclude> |
| 25 | </whitelist> |
| 26 | </filter> |
| 27 | </phpunit> |