1
0
mirror of https://github.com/flarum/core.git synced 2025-08-31 20:02:06 +02:00

fix(subscriptions): reply notifications not working (#3445)

* chore: subscriptions backend test infrastructure

* test: reply notification

* fix: fix reply notifications not working
This commit is contained in:
Sami Mazouz
2022-06-03 20:06:30 +01:00
committed by GitHub
parent b7332895db
commit c2ba3bb7d5
8 changed files with 236 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
stopOnFailure="false"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">../src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Flarum Integration Tests">
<directory suffix="Test.php">./integration</directory>
<exclude>./integration/tmp</exclude>
</testsuite>
</testsuites>
</phpunit>