Files
cloudron-box/src/test/docker-test.js

24 lines
492 B
JavaScript
Raw Normal View History

2022-10-11 22:38:26 +02:00
/* jslint node:true */
/* global it:false */
/* global before:false */
/* global after:false */
/* global describe:false */
'use strict';
const common = require('./common.js'),
docker = require('../docker.js'),
expect = require('expect.js');
describe('docker', function () {
const { setup, cleanup } = common;
before(setup);
after(cleanup);
it('can df', async function () {
const output = await docker.df();
expect(output).to.be.ok();
});
});