File tree 2 files changed +10
-10
lines changed 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 42
42
matrix :
43
43
include :
44
44
# # 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=""
47
47
48
48
# Run e2e tests (in zeppelin-web)
49
49
- os : linux
Original file line number Diff line number Diff line change 1
1
describe ( 'Home e2e Test' , function ( ) {
2
2
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!' )
7
7
} )
8
8
9
9
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 ( )
12
12
} )
13
13
14
14
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 ( )
17
17
} )
18
18
} )
You can’t perform that action at this time.
0 commit comments