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
assert.equal(arrayStartsWithArray(originalImageLayers,baseImageLayers),true,'because the image is made up of feature layers on top of the base image');
123
+
assert.equal(arrayStartsWithArray(cachedImageLayers,baseImageLayers),true,'because the image is made up of feature layers on top of the base image');
124
+
assert.equal(arrayStartsWithArray(nonCachedImageLayers,baseImageLayers),true,'because the image is made up of feature layers on top of the base image');
assert.deepEqual(originalImageWithoutBaseImageLayers,cachedImageWithoutBaseImageLayers,'because they are the same image built sequentially therefore the second should have used caching');
131
+
assert.equal(haveCommonEntries(cachedImageWithoutBaseImageLayers,nonCachedImageWithoutBaseImageLayers),false,'because we passed the --no-cache argument which disables the use of the cache, therefore the non-base image layers should have nothin in common');
132
+
});
133
+
67
134
it('should fail with "not found" error when config is not found',async()=>{
0 commit comments