11import { ImageName } from "./image-name" ;
22
3- describe ( "ContainerImage" , ( ) => {
3+ describe . sequential ( "ContainerImage" , ( ) => {
44 it ( "should return whether two image names are equal" , ( ) => {
55 const imageName = new ImageName ( "registry" , "image" , "tag" ) ;
66
@@ -10,7 +10,7 @@ describe("ContainerImage", () => {
1010 expect ( imageName . equals ( new ImageName ( "anotherRegistry" , "image" , "tag" ) ) ) . toBe ( false ) ;
1111 } ) ;
1212
13- describe ( "string" , ( ) => {
13+ describe . sequential ( "string" , ( ) => {
1414 it ( "should work with registry" , ( ) => {
1515 const imageName = new ImageName ( "registry" , "image" , "tag" ) ;
1616 expect ( imageName . string ) . toBe ( "registry/image:tag" ) ;
@@ -67,7 +67,7 @@ describe("ContainerImage", () => {
6767 ) ;
6868 } ) ;
6969
70- describe ( "fromString" , ( ) => {
70+ describe . sequential ( "fromString" , ( ) => {
7171 it ( "should work" , ( ) => {
7272 const imageName = ImageName . fromString ( "image:latest" ) ;
7373
@@ -154,7 +154,7 @@ describe("ContainerImage", () => {
154154 } ) ;
155155 } ) ;
156156
157- describe . each ( [
157+ describe . sequential . each ( [
158158 { customRegistry : "custom.com/registry" , expectedRegistry : "custom.com" , expectedImagePrefix : "registry/" } ,
159159 { customRegistry : "custom.com/registry/" , expectedRegistry : "custom.com" , expectedImagePrefix : "registry/" } ,
160160 { customRegistry : "custom.com" , expectedRegistry : "custom.com" , expectedImagePrefix : "" } ,
0 commit comments