focalboard/webapp/cypress/integration/homepage.js
2020-12-10 13:45:56 -08:00

9 lines
272 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#octo-tasks-app').should('exist');
});
});