aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tests/index.js15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/tests/index.js b/src/tests/index.js
index 47b7f79..7a85db3 100644
--- a/src/tests/index.js
+++ b/src/tests/index.js
@@ -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();
+ }
+ });
+ });
}); \ No newline at end of file