Skip to content

Commit e924e76

Browse files
committed
fix: pass test, use 2 dists
1 parent 58cfb23 commit e924e76

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ env:
4242
matrix:
4343
include:
4444
# # Test License compliance using RAT tool
45-
# - jdk: "oraclejdk7"
46-
# env: SCALA_VER="2.11" SPARK_VER="2.0.2" HADOOP_VER="2.6" PROFILE="-Prat" BUILD_FLAG="clean" TEST_FLAG="org.apache.rat:apache-rat-plugin:check" TEST_PROJECTS=""
45+
- jdk: "oraclejdk7"
46+
env: SCALA_VER="2.11" SPARK_VER="2.0.2" HADOOP_VER="2.6" PROFILE="-Prat" BUILD_FLAG="clean" TEST_FLAG="org.apache.rat:apache-rat-plugin:check" TEST_PROJECTS=""
4747

4848
# Run e2e tests (in zeppelin-web)
4949
- os: linux

zeppelin-web/e2e/home.spec.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
describe('Home e2e Test', function() {
22
it('should have a welcome message', function() {
3-
// browser.get('http://localhost:8080');
4-
// var weblcomeElem = element(by.id('welcome'))
5-
//
6-
// expect(weblcomeElem.getText()).toEqual('Welcome to Zeppelin!')
3+
browser.get('http://localhost:8080');
4+
var weblcomeElem = element(by.id('welcome'))
5+
6+
expect(weblcomeElem.getText()).toEqual('Welcome to Zeppelin!')
77
})
88

99
it('should have the button for importing notebook', function() {
10-
// var btn = element(by.cssContainingText('a', 'Import note'))
11-
// expect(btn).toBeDefined()
10+
var btn = element(by.cssContainingText('a', 'Import note'))
11+
expect(btn).toBeDefined()
1212
})
1313

1414
it('should have the button for creating notebook', function() {
15-
// var btn = element(by.cssContainingText('a', 'Create new note'))
16-
// expect(btn).toBeDefined()
15+
var btn = element(by.cssContainingText('a', 'Create new note'))
16+
expect(btn).toBeDefined()
1717
})
1818
})

0 commit comments

Comments
 (0)