0
mirror of https://github.com/valentineus/simple-container.git synced 2025-07-02 08:40:26 +03:00

A simple test for testing

This commit is contained in:
2017-10-07 00:00:26 +04:00
parent ddb3305b4c
commit 0603622054
2 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,16 @@
import { assert } from 'chai';
import Containers from '../lib/index';
describe('simple-container:', () => {
it('test()', () => {});
it('simple', (done) => {
var containers = new Containers();
var image = 'hello-world:latest';
containers.create(image).then(container => {
if (container) {
done();
}
});
});
});