2020-12-10 13:45:56 -08:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
// See LICENSE.txt for license information.
|
|
|
|
|
|
|
|
describe('Load homepage', () => {
|
|
|
|
it('Can load homepage', () => {
|
|
|
|
cy.visit('/');
|
2021-01-29 20:39:06 -08:00
|
|
|
cy.get('div#main-app').should('exist');
|
2020-12-10 13:45:56 -08:00
|
|
|
});
|
|
|
|
});
|