1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-04-05 19:32:37 +02:00

test for changing creation title

This commit is contained in:
Arnab Sen 2022-04-19 00:14:34 +05:30
parent fa7150b24f
commit 0da697aac6
No known key found for this signature in database
GPG Key ID: 255D0564BAEA8F9D

View File

@ -34,7 +34,47 @@ describe('Testing interfaces', () => {
});
it('Save button click should save the current work with a notification.', () => {
cy.get('#htmlCodeEl').type('Hello');
const sampleText = 'Hello';
cy.get('#htmlCodeEl').type(sampleText);
cy.on('window:confirm', text => {
expect(text).to.contains('Do you still want to continue saving locally?');
});
cy.get('#saveBtn').click();
cy.get('#js-alerts-container').should('be.visible');
cy.get('#js-alerts-container').contains('Auto-save enabled');
cy.then(() => {
const ls = JSON.parse(localStorage.getItem('code'));
expect(ls).to.be.not.null;
expect(ls['title']).to.contain('Untitled');
expect(ls['html']).to.eq(sampleText);
});
});
it('Cmd + S (Save) should save the current work with a notification.', () => {
const sampleText = 'Hello';
cy.on('window:confirm', text => {
expect(text).to.contains('Do you still want to continue saving locally?');
});
cy.get('#htmlCodeEl').type(sampleText + '{ctrl+s}');
cy.get('#js-alerts-container').should('be.visible');
cy.get('#js-alerts-container').contains('Auto-save enabled');
cy.then(() => {
const ls = JSON.parse(localStorage.getItem('code'));
expect(ls).to.be.not.null;
expect(ls['title']).to.contain('Untitled');
expect(ls['html']).to.eq(sampleText);
});
});
it('Changing creation title should auto save in localstorage', () => {
const sampleText = 'Hello';
cy.get('#htmlCodeEl').type(sampleText);
cy.on('window:confirm', text => {
expect(text).to.contains('Do you still want to continue saving locally?');
@ -46,6 +86,22 @@ describe('Testing interfaces', () => {
const ls = JSON.parse(localStorage.getItem('code'));
expect(ls).to.be.not.null;
expect(ls['title']).to.contain('Untitled');
expect(ls['html']).to.eq(sampleText);
});
cy.get('#titleInput').clear().type('test');
cy.get('#saveBtn').click();
cy.get('#js-alerts-container').should('be.visible');
cy.get('#js-alerts-container').contains('Item saved');
cy.wait(1000); // for the localstorage to reflect the changes
cy.then(() => {
const ls = JSON.parse(localStorage.getItem('code'));
expect(ls).to.be.not.null;
expect(ls['title']).to.eq('test');
expect(ls['html']).to.eq(sampleText);
});
});
});