Skip to content

Commit

Permalink
Merge pull request #128 from RADAR-CNS/master
Browse files Browse the repository at this point in the history
Merge release 0.2.1 back into dev
  • Loading branch information
dennyverbeeck authored Nov 13, 2017
2 parents 03fada4 + e3956d2 commit 0ec8c2c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ plugins {

allprojects {
group 'org.radarcns'
version '0.2.0'
version '0.2.1'

apply plugin: 'java'
apply plugin: 'java-library'
Expand Down
2 changes: 1 addition & 1 deletion oauth-client-util/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Quickstart:

```groovy
dependencies {
compile group: 'org.radarcns', name: 'oauth-client-util', version: '0.1'
compile group: 'org.radarcns', name: 'oauth-client-util', version: '0.2.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion radar-auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Add the dependency to your project.

Gradle:
```groovy
compile group: 'org.radarcns', name: 'radar-auth', version: '0.1'
compile group: 'org.radarcns', name: 'radar-auth', version: '0.2.1'
```

The library expects the identity server configuration in a file called `radar-is.yml`. Either set
Expand Down
11 changes: 11 additions & 0 deletions src/test/javascript/e2e/account/account.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,17 @@ describe('account', () => {
const login = element(by.id('login'));
const logout = element(by.id('logout'));

var originalTimeOut;

beforeAll(() => {
browser.get('/');
});

beforeEach(() => {
originalTimeOut = jasmine.DEFAULT_TIMEOUT_INTERVAL;
jasmine.DEFAULT_TIMEOUT_INTERVAL = 240000;
});

it('should fail to login with bad password', () => {
const expect1 = /home.title/;
element.all(by.css('h1')).first().getAttribute('jhiTranslate').then((value) => {
Expand Down Expand Up @@ -103,6 +110,10 @@ describe('account', () => {
element(by.css('button[type=submit]')).click();
});

afterEach(() => {
jasmine.DEFAULT_TIMEOUT_INTERVAL = originalTimeOut;
});

afterAll(() => {
accountMenu.click();
logout.click();
Expand Down
2 changes: 1 addition & 1 deletion src/test/javascript/protractor.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ exports.config = {

jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 60000,
defaultTimeoutInterval: 120000,
print: function() {}
},

Expand Down

0 comments on commit 0ec8c2c

Please sign in to comment.