File tree 4 files changed +17
-37
lines changed
test/elixir_newbie_web/wallaby
4 files changed +17
-37
lines changed Original file line number Diff line number Diff line change @@ -102,22 +102,5 @@ jobs:
102
102
- name : Credo Check
103
103
run : mix credo
104
104
105
- # retrieve PLT Cache for Dialyzer
106
- - name : Retrieve PLT Cache
107
- uses : actions/cache@v1
108
- id : plt-cache
109
- with :
110
- path : priv/plts
111
- key : ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plts-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
112
-
113
- - name : Create PLTs
114
- if : steps.plt-cache.outputs.cache-hit != 'true'
115
- run : |
116
- mkdir -p priv/plts
117
- mix dialyzer --plt
118
-
119
- - name : Run dialyzer
120
- run : mix dialyzer --no-check
121
-
122
105
- name : Run tests
123
106
run : mix test
Original file line number Diff line number Diff line change @@ -33,7 +33,12 @@ config :logger, level: :warning
33
33
config :phoenix , :plug_init_mode , :runtime
34
34
35
35
# Configure Wallaby Chrome driver
36
- config :wallaby , driver: Wallaby.Chrome
36
+ config :wallaby ,
37
+ driver: Wallaby.Chrome ,
38
+ chromedriver: [
39
+ headless: false
40
+ ]
41
+
37
42
# config :wallaby, driver: Wallaby.Selenium
38
43
config :wallaby , otp_app: :elixir_newbie
39
44
Original file line number Diff line number Diff line change @@ -9,17 +9,7 @@ defmodule ElixirNewbie.MixProject do
9
9
elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
10
10
start_permanent: Mix . env ( ) == :prod ,
11
11
aliases: aliases ( ) ,
12
- deps: deps ( ) ,
13
- # fixes dialyzer warning in mix tasks
14
- dialyzer: dialyzer ( )
15
- ]
16
- end
17
-
18
- defp dialyzer do
19
- [
20
- plt_add_apps: [ :mix ] ,
21
- plt_core_path: "priv/plts" ,
22
- plt_file: { :no_warn , "priv/plts/dialyzer.plt" }
12
+ deps: deps ( )
23
13
]
24
14
end
25
15
Original file line number Diff line number Diff line change @@ -20,15 +20,17 @@ defmodule ElixirNewbieWeb.Wallaby.SnapshotTests do
20
20
21
21
@ tag :wallaby
22
22
feature "take snapshots" , % { session: session } do
23
- Enum . each ( @ urls , fn url ->
24
- page = visit ( session , url )
23
+ page = visit ( session , "/" )
24
+ take_screenshot ( page , name: "test" )
25
+ # Enum.each(@urls, fn url ->
26
+ # page = visit(session, url)
25
27
26
- Enum . each ( @ sizes , fn { size , width } ->
27
- screen = resize_window ( page , width , 2000 )
28
+ # Enum.each(@sizes, fn {size, width} ->
29
+ # screen = resize_window(page, width, 2000)
28
30
29
- Process . sleep ( 500 )
30
- take_screenshot ( screen , name: "#{ ( url == "" && "home" ) || url } /#{ size } " )
31
- end )
32
- end )
31
+ # Process.sleep(500)
32
+ # take_screenshot(screen, name: "#{(url == "" && "home") || url}/#{size}")
33
+ # end)
34
+ # end)
33
35
end
34
36
end
You can’t perform that action at this time.
0 commit comments