Skip to content

Commit

Permalink
fix(tests): fix images unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Izak88 committed Dec 21, 2017
1 parent 86cd34a commit 9ef5544
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/090_docker-images.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('Docker Images', () => {
return sendGetRequest({}, `api/images`).then(imgs => expect(imgs['data']).to.deep.equals([]));
});

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

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

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

0 comments on commit 9ef5544

Please sign in to comment.