Skip to content

Commit f7198a2

Browse files
committedJan 28, 2022
Add coverage
1 parent 723dcbf commit f7198a2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+1193
-3
lines changed
 

‎.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ tmp/*
1717
# Build
1818
public/css/main.css
1919

20-
# Coverage reports
21-
coverage
2220

2321
# API keys and secrets
2422
.env
@@ -39,4 +37,4 @@ Thumbs.db
3937
dist/**/*
4038

4139
# ignore yarn.lock
42-
yarn.lock
40+
yarn.lock

‎src/coverage/align.ts

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { CoverageInfo } from "../coverage-info";
2+
3+
export const align: CoverageInfo[] = [
4+
{ style: "align-content",
5+
values: "normal|stretch|center|flex-start|flex-end|space-between|space-around|initial|inherit"
6+
},
7+
{ style: "align-items",
8+
values: "normal|stretch|center|flex-start|flex-end|baseline|initial|inherit"
9+
},
10+
{ style: "align-self",
11+
values: "auto|normal|stretch|center|flex-start|flex-end|baseline|initial|inherit"
12+
}
13+
]

0 commit comments

Comments
 (0)
Please sign in to comment.