mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
import { getDBsToTest } from './get-dbs-to-test';
|
|
import config from './config';
|
|
|
|
export function getURLsToTest(): string[] {
|
|
const dbVendors = getDBsToTest();
|
|
const urls = dbVendors.map((vendor) => `http://localhost:${config.ports[vendor]!}`);
|
|
return urls;
|
|
}
|