mirror of
https://github.com/janishutz/color-thief.git
synced 2025-11-25 05:44:24 +00:00
7 lines
210 B
JavaScript
7 lines
210 B
JavaScript
describe('My First Test', function() {
|
|
it('Does not do much!', function() {
|
|
cy.visit('https://lokeshdhakar.com');
|
|
cy.get('.nav__item').contains('Blog').click();
|
|
cy.url().should('contain', 'blog');
|
|
})
|
|
}) |