mirror of
https://github.com/janishutz/color-thief.git
synced 2025-11-25 05:44:24 +00:00
13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
describe('API', function() {
|
|
beforeEach(function() {
|
|
cy.visit('http://localhost:8080');
|
|
})
|
|
|
|
it('Does not do much!', function() {
|
|
// console.log(colorThief);
|
|
expect(true).to.equal(true);
|
|
// cy.get('.nav__item').contains('Blog').click();
|
|
// cy.url().should('contain', 'blog');
|
|
})
|
|
})
|