Skip to content

Commit c21335f

Browse files
committed
version bump
1 parent aa3580d commit c21335f

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

package-lock.json

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dockerode-compose",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "docker-compose in nodejs using dockerode",
55
"main": "./compose.js",
66
"scripts": {

test/compose.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('compose', function () {
5858

5959
describe('#up_complex', function () {
6060
it("should do compose up complex example with extends and build", function (done) {
61-
this.timeout(60000);
61+
this.timeout(300000);
6262
(async () => {
6363
var report = await compose_complex.up();
6464
expect(report.services).to.be.ok;
@@ -79,7 +79,7 @@ describe('compose', function () {
7979

8080
describe('#up_build', function () {
8181
it("should do compose up example with build", function (done) {
82-
this.timeout(120000);
82+
this.timeout(300000);
8383
(async () => {
8484
var report = await compose_build.up();
8585
expect(report.services).to.be.ok;
@@ -97,7 +97,7 @@ describe('compose', function () {
9797
})();
9898
});
9999
it("should do compose up example with build(verbose)", function (done) {
100-
this.timeout(120000);
100+
this.timeout(300000);
101101
(async () => {
102102
var report = await compose_build.up({ 'verbose': true });
103103
expect(report.services).to.be.ok;

0 commit comments

Comments
 (0)