You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: headless-services/concourse-language-server/src/main/java/org/springframework/ide/vscode/concourse/PipelineYmlSchema.java
Copy file name to clipboardExpand all lines: headless-services/concourse-language-server/src/test/java/org/springframework/ide/vscode/concourse/ConcourseEditorTest.java
+61
Original file line number
Diff line number
Diff line change
@@ -2143,6 +2143,20 @@ public void resourceAttributeHovers() throws Exception {
2143
2143
"version|Unused",
2144
2144
"source|'openstack' is required"
2145
2145
);
2146
+
2147
+
//required props for gcs driver
2148
+
editor = harness.newEditor(
2149
+
"resources:\n" +
2150
+
"- name: version\n" +
2151
+
" type: semver\n" +
2152
+
" check_every: 1h \n" +
2153
+
" source:\n" +
2154
+
" driver: gcs"
2155
+
);
2156
+
editor.assertProblems(
2157
+
"version|Unused",
2158
+
"source|Properties [bucket, json_key, key] are required"
0 commit comments