aboutsummaryrefslogtreecommitdiff
path: root/src/tests/index.js
blob: 7a85db34050e604245d4bccd118a26230757ae75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { assert } from 'chai';

import Containers from '../lib/index';

describe('simple-container:', () => {
    it('simple', (done) => {
        var containers = new Containers();
        var image = 'hello-world:latest';

        containers.create(image).then(container => {
            if (container) {
                done();
            }
        });
    });
});