[MM-19327] Remove Finder from desktop app (#1515)

* [MM-19327] Remove Finder from desktop app

* Lint fix

* Commenting out flaky test

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
Devin Binnie
2021-03-24 10:19:41 -04:00
committed by GitHub
parent b5c59fa8ce
commit 66a2c3f7b1
14 changed files with 12 additions and 502 deletions

View File

@@ -23,16 +23,16 @@ describe('application', function desc() {
}
});
it('should show two windows if there is no config file', async () => {
await this.app.client.waitUntilWindowLoaded();
const count = await this.app.client.getWindowCount();
count.should.equal(2);
const opened = await this.app.browserWindow.isDevToolsOpened();
opened.should.be.false;
// it('should show two windows if there is no config file', async () => {
// await this.app.client.waitUntilWindowLoaded();
// const count = await this.app.client.getWindowCount();
// count.should.equal(2);
// const opened = await this.app.browserWindow.isDevToolsOpened();
// opened.should.be.false;
const visible = await this.app.browserWindow.isVisible();
visible.should.be.true;
});
// const visible = await this.app.browserWindow.isVisible();
// visible.should.be.true;
// });
if (process.platform === 'darwin') {
it.skip('should show closed window with cmd+tab', async () => {