mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
2c517d6278
* check in full site application * rm unused assets components * change base css * i18n * new doc workflow * fix crosslink to doc in github * nav, console link, assets, console brand * edit configjs server * rm go struct references * cleanup input output bindings * working dir * export path * always trigger * rel paths * cname * rev workdir * fix fallbacklanguage, home on large screens * remove mit from site
19 lines
413 B
JavaScript
19 lines
413 B
JavaScript
describe('Sapper template app', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/')
|
|
});
|
|
|
|
it('has the correct <h1>', () => {
|
|
cy.contains('h1', 'Great success!')
|
|
});
|
|
|
|
it('navigates to /about', () => {
|
|
cy.get('nav a').contains('about').click();
|
|
cy.url().should('include', '/about');
|
|
});
|
|
|
|
it('navigates to /blog', () => {
|
|
cy.get('nav a').contains('blog').click();
|
|
cy.url().should('include', '/blog');
|
|
});
|
|
}); |