Make tests work

This commit is contained in:
Girish Ramakrishnan
2018-08-20 20:10:14 -07:00
parent d5194cfdc9
commit 89cf8167e6
2 changed files with 7 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ describe('Dockerproxy', function () {
exec(DOCKER + ' info', function (error, stdout, stderr) {
expect(error).to.be(null);
expect(stdout).to.contain('Containers:');
expect(stderr).to.be.empty();
// expect(stderr).to.be.empty(); // on some machines, i get 'No swap limit support'
done();
});
});