File tree 4 files changed +23
-13
lines changed
4 files changed +23
-13
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ RUN set -x \
16
16
ca-certificates \
17
17
chromium \
18
18
curl \
19
+ libffi-dev \
19
20
libgconf2.0 \
20
21
ruby \
21
22
ruby-dev \
Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
3
3
gem 'capybara'
4
- gem 'minitest-ci '
4
+ gem 'minitest-reporters '
5
5
gem 'selenium-webdriver'
Original file line number Diff line number Diff line change 3
3
specs:
4
4
addressable (2.5.2 )
5
5
public_suffix (>= 2.0.2 , < 4.0 )
6
+ ansi (1.5.0 )
7
+ builder (3.2.3 )
6
8
capybara (2.17.0 )
7
9
addressable
8
10
mini_mime (>= 0.1.3 )
12
14
xpath (>= 2.0 , < 4.0 )
13
15
childprocess (0.8.0 )
14
16
ffi (~> 1.0 , >= 1.0.11 )
15
- ffi (1.9.18 )
17
+ ffi (1.9.21 )
16
18
mini_mime (1.0.0 )
17
19
mini_portile2 (2.3.0 )
18
- minitest (5.11.1 )
19
- minitest-ci (3.3.0 )
20
- minitest (>= 5.0.6 )
21
- nokogiri (1.8.1 )
20
+ minitest (5.11.3 )
21
+ minitest-reporters (1.1.19 )
22
+ ansi
23
+ builder
24
+ minitest (>= 5.0 )
25
+ ruby-progressbar
26
+ nokogiri (1.8.2 )
22
27
mini_portile2 (~> 2.3.0 )
23
28
public_suffix (3.0.1 )
24
- rack (2.0.3 )
29
+ rack (2.0.4 )
25
30
rack-test (0.8.2 )
26
31
rack (>= 1.0 , < 3 )
32
+ ruby-progressbar (1.9.0 )
27
33
rubyzip (1.2.1 )
28
- selenium-webdriver (3.8 .0 )
34
+ selenium-webdriver (3.9 .0 )
29
35
childprocess (~> 0.5 )
30
- rubyzip (~> 1.0 )
36
+ rubyzip (~> 1.2 )
31
37
xpath (3.0.0 )
32
38
nokogiri (~> 1.8 )
33
39
@@ -36,8 +42,8 @@ PLATFORMS
36
42
37
43
DEPENDENCIES
38
44
capybara
39
- minitest-ci
45
+ minitest-reporters
40
46
selenium-webdriver
41
47
42
48
BUNDLED WITH
43
- 1.16.0
49
+ 1.15.4
Original file line number Diff line number Diff line change 1
1
require 'minitest/autorun'
2
- require 'minitest/ci '
2
+ require 'minitest/reporters '
3
3
require 'minitest/spec'
4
4
require 'capybara'
5
5
require 'selenium-webdriver'
12
12
WAIT_LOAD = 10 # 10s: how long to wait for a page to load
13
13
WAIT_SLOW = 70 # 60s: how long to wait for Overview to complete an import job
14
14
15
- Minitest ::Ci . report_dir = '/app/reports'
15
+ Minitest ::Reporters . use! [
16
+ Minitest ::Reporters ::SpecReporter . new ,
17
+ Minitest ::Reporters ::JUnitReporter . new ( '/app/reports' )
18
+ ]
16
19
17
20
def chrome_args
18
21
# Dynamic: each time we call this, create a new user-data-dir
You can’t perform that action at this time.
0 commit comments