Skip to content

Commit

Permalink
test: clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
borisdamevin committed May 25, 2023
1 parent df04297 commit 5d04114
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions color/__tests__/mixins.spec.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,9 @@
@include assert {
@include output(false) {
.test {
$theme: (
@include color.theme((
"primary": darkorange
);

@include color.theme($theme);
));
}
}

Expand Down
6 changes: 2 additions & 4 deletions shape/__tests__/mixins.spec.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,9 @@
@include assert {
@include output(false) {
.test {
$theme: (
@include shape.theme((
"filled": 8px
);

@include shape.theme($theme);
));
}
}

Expand Down
6 changes: 2 additions & 4 deletions typography/__tests__/mixins.spec.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,9 @@
@include assert {
@include output(false) {
.test {
$theme: (
@include typography.theme( (
"body-font-size": 20px
);

@include typography.theme($theme);
));
}
}

Expand Down

0 comments on commit 5d04114

Please sign in to comment.