1+ /* eslint-disable @typescript-eslint/camelcase */
12// imports
23import uuid from "uuid/v4" ;
34import * as deploymenttable from "../../lib/azure/deploymenttable" ;
@@ -134,16 +135,16 @@ afterAll(() => {
134135describe ( "Validate deployment configuration" , ( ) => {
135136 test ( "valid deployment configuration" , async ( ) => {
136137 const config : ConfigYaml = {
137- " azure_devops" : {
138+ azure_devops : {
138139 org : uuid ( ) ,
139140 project : uuid ( )
140141 } ,
141142 introspection : {
142143 azure : {
143- " account_name" : uuid ( ) ,
144+ account_name : uuid ( ) ,
144145 key : Promise . resolve ( uuid ( ) ) ,
145- " partition_key" : uuid ( ) ,
146- " table_name" : uuid ( )
146+ partition_key : uuid ( ) ,
147+ table_name : uuid ( )
147148 }
148149 }
149150 } ;
@@ -210,7 +211,7 @@ describe("test runSelfTest function", () => {
210211 introspection : {
211212 azure : {
212213 key : Promise . resolve ( uuid ( ) ) ,
213- " table_name" : undefined
214+ table_name : undefined
214215 }
215216 }
216217 } ;
@@ -229,7 +230,7 @@ describe("test runSelfTest function", () => {
229230 introspection : {
230231 azure : {
231232 key : Promise . resolve ( uuid ( ) ) ,
232- " table_name" : undefined
233+ table_name : undefined
233234 }
234235 }
235236 } ;
@@ -244,7 +245,7 @@ describe("test runSelfTest function", () => {
244245 introspection : {
245246 azure : {
246247 key : Promise . resolve ( uuid ( ) ) ,
247- " table_name" : undefined
248+ table_name : undefined
248249 }
249250 }
250251 } ;
@@ -277,7 +278,7 @@ describe("Validate missing deployment.storage configuration", () => {
277278 const config : ConfigYaml = {
278279 introspection : {
279280 azure : {
280- " account_name" : undefined ,
281+ account_name : undefined ,
281282 key : Promise . resolve ( uuid ( ) )
282283 }
283284 }
@@ -292,7 +293,7 @@ describe("Validate missing deployment.storage configuration", () => {
292293 introspection : {
293294 azure : {
294295 key : Promise . resolve ( uuid ( ) ) ,
295- " table_name" : undefined
296+ table_name : undefined
296297 }
297298 }
298299 } ;
@@ -306,7 +307,7 @@ describe("Validate missing deployment.storage configuration", () => {
306307 introspection : {
307308 azure : {
308309 key : Promise . resolve ( uuid ( ) ) ,
309- " partition_key" : undefined
310+ partition_key : undefined
310311 }
311312 }
312313 } ;
@@ -343,7 +344,7 @@ describe("Validate missing deployment.pipeline configuration", () => {
343344describe ( "Validate missing deployment.pipeline configuration" , ( ) => {
344345 test ( "missing deployment.pipeline.org configuration" , async ( ) => {
345346 const config : ConfigYaml = {
346- " azure_devops" : {
347+ azure_devops : {
347348 org : undefined
348349 } ,
349350 introspection : {
@@ -359,7 +360,7 @@ describe("Validate missing deployment.pipeline configuration", () => {
359360describe ( "Validate missing deployment.pipeline configuration" , ( ) => {
360361 test ( "missing deployment.pipeline.project configuration" , async ( ) => {
361362 const config : ConfigYaml = {
362- " azure_devops" : {
363+ azure_devops : {
363364 org : "org" ,
364365 project : undefined
365366 } ,
0 commit comments