@@ -24,7 +24,7 @@ describe('Docker Suite', function() {
2424 after ( function ( ) {
2525 } ) ;
2626
27- it ( 'Runs successfully for docker build' , ( done :MochaDone ) => {
27+ it ( 'Runs successfully for docker build' , ( done :Mocha . Done ) => {
2828 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
2929 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
3030 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . buildImage ;
@@ -38,7 +38,7 @@ describe('Docker Suite', function() {
3838 done ( ) ;
3939 } ) ;
4040
41- it ( 'Runs successfully for docker build with memory limit' , ( done :MochaDone ) => {
41+ it ( 'Runs successfully for docker build with memory limit' , ( done :Mocha . Done ) => {
4242 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
4343 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
4444 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . buildImage ;
@@ -53,7 +53,7 @@ describe('Docker Suite', function() {
5353 done ( ) ;
5454 } ) ;
5555
56- it ( 'Runs successfully for docker build for invalid image name' , ( done :MochaDone ) => {
56+ it ( 'Runs successfully for docker build for invalid image name' , ( done :Mocha . Done ) => {
5757 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
5858 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
5959 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . buildImage ;
@@ -69,7 +69,7 @@ describe('Docker Suite', function() {
6969 done ( ) ;
7070 } ) ;
7171
72- it ( 'Runs fails for docker build for invalid image name and modify image name false' , ( done :MochaDone ) => {
72+ it ( 'Runs fails for docker build for invalid image name and modify image name false' , ( done :Mocha . Done ) => {
7373 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
7474 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
7575 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . buildImage ;
@@ -85,7 +85,7 @@ describe('Docker Suite', function() {
8585 done ( ) ;
8686 } ) ;
8787
88- it ( 'Runs successfully for docker build for invalid image name and additional image tag' , ( done :MochaDone ) => {
88+ it ( 'Runs successfully for docker build for invalid image name and additional image tag' , ( done :Mocha . Done ) => {
8989 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
9090 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
9191 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . buildImage ;
@@ -103,7 +103,7 @@ describe('Docker Suite', function() {
103103 } ) ;
104104
105105
106- it ( 'Runs successfully for docker build with latest tag' , ( done :MochaDone ) => {
106+ it ( 'Runs successfully for docker build with latest tag' , ( done :Mocha . Done ) => {
107107 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
108108 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
109109 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . buildImage ;
@@ -118,7 +118,7 @@ describe('Docker Suite', function() {
118118 done ( ) ;
119119 } ) ;
120120
121- it ( 'Runs successfully for docker run image' , ( done :MochaDone ) => {
121+ it ( 'Runs successfully for docker run image' , ( done :Mocha . Done ) => {
122122 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
123123 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
124124 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . runImage ;
@@ -132,7 +132,7 @@ describe('Docker Suite', function() {
132132 done ( ) ;
133133 } ) ;
134134
135- it ( 'Runs successfully for docker run image with memory limit' , ( done :MochaDone ) => {
135+ it ( 'Runs successfully for docker run image with memory limit' , ( done :Mocha . Done ) => {
136136 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
137137 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
138138 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . runImage ;
@@ -147,7 +147,7 @@ describe('Docker Suite', function() {
147147 done ( ) ;
148148 } ) ;
149149
150- it ( 'Runs successfully for docker tag image from image names file' , ( done :MochaDone ) => {
150+ it ( 'Runs successfully for docker tag image from image names file' , ( done :Mocha . Done ) => {
151151 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
152152 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
153153 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . tagImages ;
@@ -163,7 +163,7 @@ describe('Docker Suite', function() {
163163 done ( ) ;
164164 } ) ;
165165
166- it ( 'Runs successfully for docker push image' , ( done :MochaDone ) => {
166+ it ( 'Runs successfully for docker push image' , ( done :Mocha . Done ) => {
167167 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
168168 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
169169 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . pushImage ;
@@ -177,7 +177,7 @@ describe('Docker Suite', function() {
177177 done ( ) ;
178178 } ) ;
179179
180- it ( 'Runs successfully for docker push image from image names file' , ( done :MochaDone ) => {
180+ it ( 'Runs successfully for docker push image from image names file' , ( done :Mocha . Done ) => {
181181 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
182182 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
183183 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . pushImages ;
@@ -191,7 +191,7 @@ describe('Docker Suite', function() {
191191 done ( ) ;
192192 } ) ;
193193
194- it ( 'Runs successfully for docker pull image' , ( done :MochaDone ) => {
194+ it ( 'Runs successfully for docker pull image' , ( done :Mocha . Done ) => {
195195 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
196196 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
197197 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . dockerCommand ;
@@ -205,7 +205,7 @@ describe('Docker Suite', function() {
205205 done ( ) ;
206206 } ) ;
207207
208- it ( 'Runs successfully for docker build with ACR' , ( done :MochaDone ) => {
208+ it ( 'Runs successfully for docker build with ACR' , ( done :Mocha . Done ) => {
209209 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
210210 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
211211 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . buildImage ;
@@ -220,7 +220,7 @@ describe('Docker Suite', function() {
220220 done ( ) ;
221221 } ) ;
222222
223- it ( 'Runs successfully for docker build with ACR and qualify image name' , ( done :MochaDone ) => {
223+ it ( 'Runs successfully for docker build with ACR and qualify image name' , ( done :Mocha . Done ) => {
224224 let tp = path . join ( __dirname , 'TestSetup.js' ) ;
225225 let tr : ttm . MockTestRunner = new ttm . MockTestRunner ( tp ) ;
226226 process . env [ shared . TestEnvVars . action ] = shared . ActionTypes . buildImage ;
0 commit comments