Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
taniarascia committed Oct 18, 2020
1 parent 3dd3795 commit 51d6e7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/client/styles/_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -236,4 +236,7 @@ $dark-editor: #3f3f3f;
background: lighten($app-sidebar-color, 8%);
border-radius: 0;
}
.Resizer {
opacity: 1;
}
}
5 changes: 0 additions & 5 deletions src/client/styles/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,11 @@
background: #000;
opacity: 0.2;
z-index: 1;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
}

.Resizer:hover {
-webkit-transition: all 2s ease;
transition: all 2s ease;
}

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/utils/testCategoryHelperUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const addCategory = (categoryName: string) => {
}

const assertCategoryDoesNotExist = (categoryName: string) => {
cy.find(categoryName).should('not.exist')
cy.findByText(categoryName).should('not.exist')
}

const assertCategoryExists = (categoryName: string) => {
Expand Down

0 comments on commit 51d6e7d

Please sign in to comment.