From b023630be65e5de90830cb4ca98f1ca9be3782dd Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 22 Jun 2015 08:57:13 +0200 Subject: [PATCH] Add missing require for common.js --- test/cloudron-user-test.js | 3 ++- test/new-user-test.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/cloudron-user-test.js b/test/cloudron-user-test.js index 59e1f03..4efa0bd 100644 --- a/test/cloudron-user-test.js +++ b/test/cloudron-user-test.js @@ -3,7 +3,7 @@ 'use strict'; /* - * This tests a flow for the cloudron 'user. The cloudron + * This tests a flow for the cloudron 'user. The cloudron * owner create a new user. This new user should be able to * login with the resetToken. */ @@ -11,6 +11,7 @@ var AppStore = require('../appstore.js'), assert = require('assert'), Cloudron = require('../cloudron.js'), + common = require('../common.js'), path = require('path'), readlineSync = require('readline-sync'), request = require('superagent-sync'), diff --git a/test/new-user-test.js b/test/new-user-test.js index 7f0ff17..3e28c95 100644 --- a/test/new-user-test.js +++ b/test/new-user-test.js @@ -11,6 +11,7 @@ var AppStore = require('../appstore.js'), assert = require('assert'), Cloudron = require('../cloudron.js'), + common = require('../common.js'), path = require('path'), readlineSync = require('readline-sync'), request = require('superagent-sync'), @@ -85,6 +86,5 @@ describe('Appstore new user flow', function () { it('can delete the cloudron', function () { appStore.deleteCloudron(box); }); - });