Skip to content

Commit 9ef5544

Browse files
committed
fix(tests): fix images unit tests
1 parent 86cd34a commit 9ef5544

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/090_docker-images.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('Docker Images', () => {
4141
return sendGetRequest({}, `api/images`).then(imgs => expect(imgs['data']).to.deep.equals([]));
4242
});
4343

44-
xit('Should send create base image request and then list all docker images', () => {
44+
it('Should send create base image request and then list all docker images', () => {
4545
return sendRequest({}, `api/images/build-base`)
4646
.then(status => expect(status['data']).to.equal(true))
4747
.then(() => delay(10000))
@@ -52,7 +52,7 @@ describe('Docker Images', () => {
5252
});
5353
});
5454

55-
xit('Should build test image from base image and then list it', () => {
55+
it('Should build test image from base image and then list it', () => {
5656
const img: ImageData = {
5757
name: 'test-unit-custom-image',
5858
dockerfile: 'FROM abstruse_builder',
@@ -77,7 +77,7 @@ describe('Docker Images', () => {
7777
});
7878
});
7979

80-
xit(`should delete that last created image and check that it's deleted everywhere`, () => {
80+
it(`should delete that last created image and check that it's deleted everywhere`, () => {
8181
const del: ImageData = {
8282
name: 'test-unit-custom-image',
8383
dockerfile: '',

0 commit comments

Comments
 (0)