1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix(MySQL): error with ANSI sql_mode

This commit is contained in:
2022-08-07 19:00:12 +02:00
parent a9fcfd57ec
commit f64a12a8e9
2 changed files with 14 additions and 13 deletions

View File

@@ -23,12 +23,13 @@ test('main window elements visibility', async () => {
const visibleSelectors = [
// '#titlebar',
'#window-content',
'#settingbar'
// '#footer'
'#settingbar',
'#footer'
];
for (const selector of visibleSelectors)
expect(await appWindow.isVisible(selector), `expect ${selector} visible`).toBe(true);
setTimeout(async () => {
for (const selector of visibleSelectors)
expect(await appWindow.isVisible(selector), `expect ${selector} visible`).toBe(true);
}, 3000);
});
// test('SQLite connection', async () => {// FIXME: not working on GitHub Actions