integration tests WIP

This commit is contained in:
Jan Prochazka
2021-05-27 09:26:37 +02:00
parent 0413075af6
commit 54fec7fd6d
7 changed files with 74 additions and 19 deletions

View File

@@ -9,6 +9,26 @@ const engines = [
port: 15001,
},
},
{
label: 'PostgreSQL',
connection: {
engine: 'postgres@dbgate-plugin-postgres',
server: 'localhost',
password: 'Pwd2020Db',
user: 'postgres',
port: 15000,
},
},
{
label: 'SQL Server',
connection: {
engine: 'mssql@dbgate-plugin-mssql',
server: 'localhost',
password: 'Pwd2020Db',
user: 'sa',
port: 15002,
},
},
];
module.exports = engines;