mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-15 09:14:11 +02:00
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
describe('Load homepage', () => {
|
|
it('Can load homepage', () => {
|
|
cy.visit('/');
|
|
cy.get('div#main-app').should('exist');
|
|
});
|
|
});
|