Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wheresrhys committed Mar 3, 2020
1 parent 8deaf14 commit a6dda99
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 21 deletions.
1 change: 1 addition & 0 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// TODO: move to rel-engage
module.exports = {
"ignoreFiles": ['dist/**/*.css'],
extends: ['stylelint-config-recommended-scss'],
};
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ describe('End-to-end - annotate rich relationship properties', () => {
.find('button.relationship-annotate-button')
.click({ force: true });

cy.get('#ul-curiousChild span.treecreeper-relationship-annotate').should(
'be.visible',
);
cy.get(
'#ul-curiousChild span.treecreeper-relationship-annotate',
).should('be.visible');
});

it('hides fields when Annotate button is clicked, if they are visible', () => {
Expand All @@ -77,9 +77,9 @@ describe('End-to-end - annotate rich relationship properties', () => {
.find('button.relationship-annotate-button')
.click({ force: true });

cy.get('#ul-curiousChild span.treecreeper-relationship-annotate').should(
'be.visible',
);
cy.get(
'#ul-curiousChild span.treecreeper-relationship-annotate',
).should('be.visible');

cy.get('#ul-curiousChild li')
.find('button.relationship-annotate-button')
Expand All @@ -104,9 +104,9 @@ describe('End-to-end - annotate rich relationship properties', () => {
.find('button.relationship-annotate-button')
.click({ force: true });

cy.get('#ul-curiousChild span.treecreeper-relationship-annotate').should(
'be.visible',
);
cy.get(
'#ul-curiousChild span.treecreeper-relationship-annotate',
).should('be.visible');

cy.get('#ul-curiousChild .treecreeper-relationship-annotate').then(
parent => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ describe('End-to-end - edit relationship properties', () => {
.find('button.relationship-annotate-button')
.click({ force: true });

cy.get('#ul-curiousChild span.treecreeper-relationship-annotate').should(
'be.visible',
);
cy.get(
'#ul-curiousChild span.treecreeper-relationship-annotate',
).should('be.visible');
});

it('hides fields when Annotate button is clicked, if they are visible', () => {
Expand All @@ -69,9 +69,9 @@ describe('End-to-end - edit relationship properties', () => {
.find('button.relationship-annotate-button')
.click({ force: true });

cy.get('#ul-curiousChild span.treecreeper-relationship-annotate').should(
'be.visible',
);
cy.get(
'#ul-curiousChild span.treecreeper-relationship-annotate',
).should('be.visible');

cy.get('#ul-curiousChild li')
.find('button.relationship-annotate-button')
Expand All @@ -96,9 +96,9 @@ describe('End-to-end - edit relationship properties', () => {
.find('button.relationship-annotate-button')
.click({ force: true });

cy.get('#ul-curiousChild span.treecreeper-relationship-annotate').should(
'be.visible',
);
cy.get(
'#ul-curiousChild span.treecreeper-relationship-annotate',
).should('be.visible');

cy.get('#ul-curiousChild .treecreeper-relationship-annotate').then(
parent => {
Expand Down Expand Up @@ -170,9 +170,9 @@ describe('End-to-end - edit relationship properties', () => {
.find('button.relationship-annotate-button')
.click({ force: true });

cy.get('#ul-curiousChild span.treecreeper-relationship-annotate').should(
'be.visible',
);
cy.get(
'#ul-curiousChild span.treecreeper-relationship-annotate',
).should('be.visible');

cy.get('#ul-curiousChild .treecreeper-relationship-annotate').then(
parent => {
Expand Down

0 comments on commit a6dda99

Please sign in to comment.