Version 0.2.0, fixed tests

This commit is contained in:
Dennis Schwerdel 2017-01-27 18:29:22 +01:00
parent 9cb5a0f08c
commit d770b101b0
6 changed files with 12 additions and 6 deletions

View File

@ -3,3 +3,6 @@
[0.1.1]
* Added screenshots
[0.2.0]
* Updated to 2017-01-25T03-14-52Z

View File

@ -4,8 +4,8 @@
"author": "Minio Developers",
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Minio is a distributed object storage server built for cloud applications and devops.",
"version": "0.1.1",
"tagline": "Distributed object storage",
"version": "0.2.0",
"healthCheckPath": "/minio/login",
"httpPort": 8000,
"addons": {

View File

@ -1,4 +1,4 @@
This app packages Minio 2016-12-13T17-19-42Z.
This app packages Minio 2017-01-25T03-14-52Z.
Minio is a distributed object storage server built for cloud applications and devops.

View File

@ -3,8 +3,10 @@ MAINTAINER Minio Developers <support@cloudron.io>
EXPOSE 8000
ENV VERSION 2017-01-25T03-14-52Z
RUN mkdir -p /app/code \
&& wget https://dl.minio.io/server/minio/release/linux-amd64/archive/minio.RELEASE.2016-12-13T17-19-42Z -O /app/code/minio \
&& wget https://dl.minio.io/server/minio/release/linux-amd64/archive/minio.RELEASE.${VERSION} -O /app/code/minio \
&& chmod +x /app/code/minio
WORKDIR /app/code

View File

@ -16,6 +16,7 @@
"rimraf": "^2.5.3",
"selenium-server-standalone-jar": "^2.53.1",
"selenium-webdriver": "^2.53.3",
"superagent": "^1.4.0"
"superagent": "^1.4.0",
"chromedriver": "^2.27.0"
}
}

View File

@ -142,7 +142,7 @@ describe('Application life cycle test', function () {
it('move to different location', function () {
browser.manage().deleteAllCookies();
execSync('cloudron install --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
execSync('cloudron configure --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
var inspect = JSON.parse(execSync('cloudron inspect'));
app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0];
expect(app).to.be.an('object');