app-backend: always test towards MySQL

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-04-13 14:03:24 +02:00
parent 16b2f7a3eb
commit ef4655546d
2 changed files with 6 additions and 4 deletions
@@ -36,9 +36,7 @@ function createDatabaseManager(
jest.setTimeout(60_000);
describe('StaticAssetsStore', () => {
const databases = TestDatabases.create({
ids: ['MYSQL_8', 'POSTGRES_16', 'POSTGRES_12', 'SQLITE_3'],
});
const databases = TestDatabases.create();
it.each(databases.eachSupportedId())(
'should store and retrieve assets, %p',
+5 -1
View File
@@ -14,4 +14,8 @@
* limitations under the License.
*/
export {};
import { TestDatabases } from '@backstage/backend-test-utils';
TestDatabases.setDefaults({
ids: ['MYSQL_8', 'POSTGRES_16', 'POSTGRES_12', 'SQLITE_3'],
});