Skip to content

Commit eac44fa

Browse files
committed
fix snippets folder
1 parent f2eaa06 commit eac44fa

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.vscode/settings.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,22 @@
77
"out": true // set this to false to include "out" folder in search results
88
},
99
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10-
"typescript.tsc.autoDetect": "off"
10+
"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"
1128
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"snippets": [
5151
{
5252
"language": "java",
53-
"path": "./src/snippets/java.json"
53+
"path": "./snippets/java.json"
5454
}
5555
]
5656
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"Mockito - Verify call": {
8888
"prefix": "mock_verify_times",
8989
"body": [
90-
"verify(${1:mockedService}, times(${2:1})).${3:executeMagic()};"
90+
"verify(${1:mockedService}, ${2|once(),times(2)|}).${3:executeMagic()};"
9191
],
9292
"description": "Verify if a mocked method was called `n` times"
9393
},

0 commit comments

Comments
 (0)