c3dba863c1
* Adding support for embed the webapp into the plugin * Adding required dependency * Removed unnecessary prettier command * Installed imagemin required dependencies * Open in a new window always * Fix CSS Conflicts. * Changing the app id to make it specific to focalboard * Adding error boundary * Fix styles on non-plugin environments * Making the css scoped to focalboard only * Create the focalboard root portal * Including missed component * Adding a missed rollback call Co-authored-by: Christopher Speller <crspeller@gmail.com> Co-authored-by: Hossein <hahmadia@users.noreply.github.com>
9 lines
272 B
JavaScript
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#focalboard-app').should('exist');
|
|
});
|
|
});
|