You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The framework aims to equip you with all the necessary tools to write end-to-end system-level tests, while still allowing the flexibility to mock third-party services that are not critical to your testing scope.
Copy file name to clipboardExpand all lines: book/src/framework/nodeset_docker_rebuild.md
+3-8Lines changed: 3 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,23 +10,18 @@ Create a configuration file `smoke.toml`
10
10
port = "8545"
11
11
type = "anvil"
12
12
13
-
[data_provider]
14
-
port = 9111
15
-
16
13
[nodeset]
17
14
nodes = 5
18
15
override_mode = "all"
16
+
17
+
[nodeset.db]
18
+
image = "postgres:15.6"
19
19
20
20
[[nodeset.node_specs]]
21
21
22
-
[nodeset.node_specs.db]
23
-
image = "postgres:15.6"
24
-
pull_image = true
25
-
26
22
[nodeset.node_specs.node]
27
23
docker_file = "../../core/chainlink.Dockerfile"
28
24
docker_ctx = "../.."
29
-
pull_image = true
30
25
```
31
26
32
27
These paths will work for `e2e/capabilities` in our main [repository](https://github.com/smartcontractkit/chainlink/tree/ctf-v2-tests/e2e/capabilities)
0 commit comments