Skip to content

Commit 4fa9eed

Browse files
.
1 parent 2817bca commit 4fa9eed

File tree

2 files changed

+25
-8
lines changed

2 files changed

+25
-8
lines changed

.vscode/settings.json

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,29 @@
2828
"[markdown]": {
2929
"editor.acceptSuggestionOnEnter": "off"
3030
},
31-
"[scss]": {
32-
"editor.defaultFormatter": "esbenp.prettier-vscode",
33-
"editor.codeActionsOnSave": {
34-
"source.fixAll.stylelint": true
35-
}
31+
/* * /
32+
"terminal.integrated.fontSize": 14,
33+
"workbench.colorCustomizations": {
34+
"terminal.background": "#1D2021",
35+
"terminal.foreground": "#A89984",
36+
"terminalCursor.background": "#A89984",
37+
"terminalCursor.foreground": "#A89984",
38+
"terminal.ansiBlack": "#1D2021",
39+
"terminal.ansiBlue": "#0D6678",
40+
"terminal.ansiBrightBlack": "#665C54",
41+
"terminal.ansiBrightBlue": "#0D6678",
42+
"terminal.ansiBrightCyan": "#8BA59B",
43+
"terminal.ansiBrightGreen": "#95C085",
44+
"terminal.ansiBrightMagenta": "#8F4673",
45+
"terminal.ansiBrightRed": "#FB543F",
46+
"terminal.ansiBrightWhite": "#FDF4C1",
47+
"terminal.ansiBrightYellow": "#FAC03B",
48+
"terminal.ansiCyan": "#8BA59B",
49+
"terminal.ansiGreen": "#95C085",
50+
"terminal.ansiMagenta": "#8F4673",
51+
"terminal.ansiRed": "#FB543F",
52+
"terminal.ansiWhite": "#A89984",
53+
"terminal.ansiYellow": "#FAC03B"
3654
}
55+
/* */
3756
}

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@
88
4. Define test case for tiny aspects (including misuse and expected fails)
99
5. Write code
1010

11-
1211
## JEST API
1312

14-
```
13+
```txt
1514
toStrictEqual // Type + Structure
1615
toBe // Prim itives, References
1716
toEqual // Deep/Recursive object equality
1817
toBeTruthy //
1918
toBeFalsy //
2019
toBeCloseTo // Float
2120
```
22-

0 commit comments

Comments
 (0)