We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2eaa06 commit eac44faCopy full SHA for eac44fa
.vscode/settings.json
@@ -7,5 +7,22 @@
7
"out": true // set this to false to include "out" folder in search results
8
},
9
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10
- "typescript.tsc.autoDetect": "off"
+ "typescript.tsc.autoDetect": "off",
11
+ "workbench.colorCustomizations": {
12
+ "activityBar.activeBackground": "#9f64a1",
13
+ "activityBar.activeBorder": "#b7b588",
14
+ "activityBar.background": "#9f64a1",
15
+ "activityBar.foreground": "#e7e7e7",
16
+ "activityBar.inactiveForeground": "#e7e7e799",
17
+ "activityBarBadge.background": "#b7b588",
18
+ "activityBarBadge.foreground": "#15202b",
19
+ "statusBar.background": "#b384b4",
20
+ "statusBar.foreground": "#15202b",
21
+ "statusBarItem.hoverBackground": "#9f64a1",
22
+ "titleBar.activeBackground": "#9f64a1",
23
+ "titleBar.activeForeground": "#e7e7e7",
24
+ "titleBar.inactiveBackground": "#9f64a199",
25
+ "titleBar.inactiveForeground": "#e7e7e799"
26
+ },
27
+ "peacock.color": "#b384b4"
28
}
package.json
@@ -50,7 +50,7 @@
50
"snippets": [
51
{
52
"language": "java",
53
- "path": "./src/snippets/java.json"
+ "path": "./snippets/java.json"
54
55
]
56
src/snippets/java.json snippets/java.jsonsrc/snippets/java.json renamed to snippets/java.json
@@ -87,7 +87,7 @@
87
"Mockito - Verify call": {
88
"prefix": "mock_verify_times",
89
"body": [
90
- "verify(${1:mockedService}, times(${2:1})).${3:executeMagic()};"
+ "verify(${1:mockedService}, ${2|once(),times(2)|}).${3:executeMagic()};"
91
],
92
"description": "Verify if a mocked method was called `n` times"
93
0 commit comments