Fix app name test (#2824)

This commit is contained in:
Devin Binnie 2023-09-06 16:01:06 -04:00 committed by GitHub
parent 6fbb9234af
commit 32223fa3e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ describe('startup/app', function desc() {
it('MM-T4985 should show app name in title bar when no servers exist', async () => {
const mainWindow = this.app.windows().find((window) => window.url().includes('index'));
const titleBarText = await mainWindow.innerText('.app-title');
titleBarText.should.equal('Mattermost');
titleBarText.should.equal('Electron');
});
}
});