24 lines
447 B
JavaScript
24 lines
447 B
JavaScript
/// <reference types="Cypress" />
|
|
|
|
describe('As a user, I can manage feeds', function () {
|
|
|
|
before(function () {
|
|
cy.login();
|
|
})
|
|
|
|
beforeEach(function () {
|
|
cy.visite("/online/#/reader/category/all/");
|
|
})
|
|
|
|
|
|
it('Add a new feed.', function () {
|
|
//arrange
|
|
|
|
//act
|
|
cy.get(".button_add-feed").click();
|
|
cy.get("#subscribe-form").find("#subscribe-url").type("")
|
|
//assert
|
|
|
|
})
|
|
|
|
}) |