Skip to content

Commit

Permalink
fix: uhmm
Browse files Browse the repository at this point in the history
  • Loading branch information
RogierdeRuijter committed Oct 17, 2020
1 parent c8755bd commit b0085fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/client-e2e/src/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ export class Helper {
this.sleep();

expect([lightSelectedColor, darkSelectedColor]).toContain(
page.getBlackSelectedChip(game.black).toContain('background-color')
page.getBlackSelectedChip(game.black).getCssValue('background-color')
);

page.getUser('winner-' + game.winner).click();

this.sleep();

expect([lightSelectedColor, darkSelectedColor]).toContain(
page.getWinnerSelectedChip(game.winner).toContain('background-color')
page.getWinnerSelectedChip(game.winner).getCssValue('background-color')
);

page.getSaveButton().click();
Expand Down
1 change: 0 additions & 1 deletion apps/client/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
@include button-icon-active-state-component-theme($theme);
@include game-result-component-theme($theme);
}

.light-theme {
@include angular-material-theme($anms-light-theme);
@include custom-components-theme($anms-light-theme);
Expand Down

0 comments on commit b0085fa

Please sign in to comment.