Run prettier on cypress folder (#4510)

* Run prettier on cypress folder

* Test Restyled

* Revert "Test Restyled"

This reverts commit 13d43968fe.
This commit is contained in:
Gabriel Dutra
2019-12-30 14:40:56 -03:00
committed by Arik Fraimovich
parent 329e85987c
commit 29582e3212
39 changed files with 1274 additions and 1213 deletions

View File

@@ -1,15 +1,15 @@
describe('Edit Group', () => {
describe("Edit Group", () => {
beforeEach(() => {
cy.login();
cy.visit('/groups/1');
cy.visit("/groups/1");
});
it('renders the page and takes a screenshot', () => {
cy.getByTestId('Group').within(() => {
cy.get('h3').should('contain', 'admin');
cy.get('td').should('contain', 'Example Admin');
it("renders the page and takes a screenshot", () => {
cy.getByTestId("Group").within(() => {
cy.get("h3").should("contain", "admin");
cy.get("td").should("contain", "Example Admin");
});
cy.percySnapshot('Group');
cy.percySnapshot("Group");
});
});