Add docker.df

This commit is contained in:
Girish Ramakrishnan
2022-10-11 22:38:26 +02:00
parent 6f61145b01
commit 760301ce02
2 changed files with 31 additions and 0 deletions

24
src/test/docker-test.js Normal file
View File

@@ -0,0 +1,24 @@
/* 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();
console.log(output);
});
});