chore: implemement basic tests
Some checks failed
Build Test / test (pull_request) Successful in 23s
JS Unit Tests / test (pull_request) Successful in 28s
PHP Unit Tests / test (pull_request) Failing after 51s

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-02-15 22:21:49 -05:00
parent af49a56a83
commit ec2bc0620a
14 changed files with 1069 additions and 14 deletions

View File

@@ -22,5 +22,18 @@
"psr-4": {
"KTXM\\MailManager\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"KTXT\\ProviderJmapc\\": "tests/php/"
}
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
],
"test:unit": "phpunit --configuration tests/php/phpunit.unit.xml --colors=always --testdox",
"test:coverage": "XDEBUG_MODE=coverage phpunit --configuration tests/php/phpunit.unit.xml --coverage-html .phpunit.coverage --coverage-text"
}
}