@@ -45,7 +45,7 @@ describe("ContainerBuildV0 Suite", function () {
4545 } ) ;
4646
4747 // Docker build tests begin
48- it ( 'Runs successfully for docker build' , ( done :MochaDone ) => {
48+ it ( 'Runs successfully for docker build' , ( done :Mocha . Done ) => {
4949 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
5050 process . env [ shared . TestEnvVars . repository ] = "testuser/testrepo" ;
5151 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
@@ -59,7 +59,7 @@ describe("ContainerBuildV0 Suite", function () {
5959 done ( ) ;
6060 } ) ;
6161
62- it ( 'Runs successfully for docker build with tags' , ( done :MochaDone ) => {
62+ it ( 'Runs successfully for docker build with tags' , ( done :Mocha . Done ) => {
6363 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
6464 process . env [ shared . TestEnvVars . repository ] = "testuser/testrepo" ;
6565 process . env [ shared . TestEnvVars . tags ] = "tag1" ;
@@ -74,7 +74,7 @@ describe("ContainerBuildV0 Suite", function () {
7474 done ( ) ;
7575 } ) ;
7676
77- it ( 'Runs successfully for docker build and push' , ( done :MochaDone ) => {
77+ it ( 'Runs successfully for docker build and push' , ( done :Mocha . Done ) => {
7878 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
7979 process . env [ shared . TestEnvVars . dockerRegistryServiceConnection ] = "dockerhubendpoint" ;
8080 process . env [ shared . TestEnvVars . repository ] = "testuser/testrepo" ;
@@ -90,7 +90,7 @@ describe("ContainerBuildV0 Suite", function () {
9090 done ( ) ;
9191 } ) ;
9292
93- it ( 'Runs successfully for docker build and push with tags' , ( done :MochaDone ) => {
93+ it ( 'Runs successfully for docker build and push with tags' , ( done :Mocha . Done ) => {
9494 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
9595 process . env [ shared . TestEnvVars . dockerRegistryServiceConnection ] = "dockerhubendpoint" ;
9696 process . env [ shared . TestEnvVars . repository ] = "testuser/testrepo" ;
@@ -107,7 +107,7 @@ describe("ContainerBuildV0 Suite", function () {
107107 done ( ) ;
108108 } ) ;
109109
110- it ( 'Runs successfully for docker build and push with mutiple tags' , ( done :MochaDone ) => {
110+ it ( 'Runs successfully for docker build and push with mutiple tags' , ( done :Mocha . Done ) => {
111111 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
112112 process . env [ shared . TestEnvVars . dockerRegistryServiceConnection ] = "dockerhubendpoint" ;
113113 process . env [ shared . TestEnvVars . repository ] = "testuser/testrepo" ;
@@ -125,7 +125,7 @@ describe("ContainerBuildV0 Suite", function () {
125125 done ( ) ;
126126 } ) ;
127127
128- it ( 'Runs successfully for docker build when registry other than Docker hub is used' , ( done :MochaDone ) => {
128+ it ( 'Runs successfully for docker build when registry other than Docker hub is used' , ( done :Mocha . Done ) => {
129129 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
130130 process . env [ shared . TestEnvVars . dockerRegistryServiceConnection ] = "acrendpoint" ;
131131 process . env [ shared . TestEnvVars . repository ] = "testrepo" ;
@@ -141,7 +141,7 @@ describe("ContainerBuildV0 Suite", function () {
141141 done ( ) ;
142142 } ) ;
143143
144- it ( 'Runs successfully for docker build when registry type is ACR and registry URL contains uppercase characters' , ( done :MochaDone ) => {
144+ it ( 'Runs successfully for docker build when registry type is ACR and registry URL contains uppercase characters' , ( done :Mocha . Done ) => {
145145 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
146146 process . env [ shared . TestEnvVars . dockerRegistryServiceConnection ] = "acrendpoint2" ;
147147 process . env [ shared . TestEnvVars . repository ] = "testrepo" ;
@@ -157,7 +157,7 @@ describe("ContainerBuildV0 Suite", function () {
157157 done ( ) ;
158158 } ) ;
159159
160- it ( 'Docker build should honour Dockerfile and buildcontext input' , ( done :MochaDone ) => {
160+ it ( 'Docker build should honour Dockerfile and buildcontext input' , ( done :Mocha . Done ) => {
161161 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
162162 process . env [ shared . TestEnvVars . repository ] = "testuser/testrepo" ;
163163 process . env [ shared . TestEnvVars . dockerFile ] = shared . formatPath ( "a/w/meta/Dockerfile" ) ;
@@ -174,7 +174,7 @@ describe("ContainerBuildV0 Suite", function () {
174174 } ) ;
175175
176176 //buildctl
177- it ( 'Buildctl should honour Dockerfile and buildcontext input' , ( done :MochaDone ) => {
177+ it ( 'Buildctl should honour Dockerfile and buildcontext input' , ( done :Mocha . Done ) => {
178178 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
179179 process . env [ 'RUNNING_ON' ] = 'KUBERNETES' ;
180180 process . env [ shared . TestEnvVars . repository ] = "testuser/testrepo" ;
@@ -191,7 +191,7 @@ describe("ContainerBuildV0 Suite", function () {
191191 done ( ) ;
192192 } ) ;
193193
194- it ( 'Buildctl should perform build as well as push if dockerregistryserviceconnect is present' , ( done :MochaDone ) => {
194+ it ( 'Buildctl should perform build as well as push if dockerregistryserviceconnect is present' , ( done :Mocha . Done ) => {
195195 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
196196 process . env [ 'RUNNING_ON' ] = 'KUBERNETES' ;
197197 process . env [ shared . TestEnvVars . dockerRegistryServiceConnection ] = "dockerhubendpoint" ;
@@ -209,7 +209,7 @@ describe("ContainerBuildV0 Suite", function () {
209209 done ( ) ;
210210 } ) ;
211211
212- it ( 'Runs successfully for buildctl build and push with multiple tags' , ( done :MochaDone ) => {
212+ it ( 'Runs successfully for buildctl build and push with multiple tags' , ( done :Mocha . Done ) => {
213213 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
214214 process . env [ 'RUNNING_ON' ] = 'KUBERNETES' ;
215215 process . env [ shared . TestEnvVars . dockerRegistryServiceConnection ] = "dockerhubendpoint" ;
@@ -227,7 +227,7 @@ describe("ContainerBuildV0 Suite", function () {
227227 done ( ) ;
228228 } ) ;
229229
230- it ( 'Runs successfully for buildctl build when registry other than Docker hub is used' , ( done :MochaDone ) => {
230+ it ( 'Runs successfully for buildctl build when registry other than Docker hub is used' , ( done :Mocha . Done ) => {
231231 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
232232 process . env [ 'RUNNING_ON' ] = 'KUBERNETES' ;
233233 process . env [ shared . TestEnvVars . dockerRegistryServiceConnection ] = "acrendpoint" ;
0 commit comments