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
Copy file name to clipboardExpand all lines: book/src/overview.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Its primary purpose is to help Chainlink developers create extensive integration
6
6
7
7
It can also be helpful to those who just want to use chainlink oracles in their projects to help test their contracts, or even for those that aren't using chainlink.
8
8
9
-
This documentation is for:
9
+
This documentation is primarily for:
10
10
- Developers looking to write end-to-end tests
11
11
- Quality Assurance Engineers aiming to test locally
12
12
@@ -15,3 +15,5 @@ To get started with writing tests, refer to the [Framework](./framework/getting_
15
15
[Repository](https://github.com/smartcontractkit/chainlink-testing-framework) contains two major pieces:
16
16
-[Framework](framework/overview.md)
17
17
-[Libraries](libraries.md)
18
+
19
+
If you're a non-technical user or simply want to run a NodeSet, please refer to our [Interactive](framework/interactive.md) chapter.
Copy file name to clipboardExpand all lines: framework/cmd/main.go
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,21 @@ func main() {
27
27
Usage: "Chainlink Testing Framework CLI",
28
28
UsageText: "'ctf' is a useful utility that can:\n- clean up test docker containers\n- modify test files\n- create a local observability stack with Grafana/Loki/Pyroscope",
29
29
Commands: []*cli.Command{
30
+
{
31
+
Name: "build",
32
+
Aliases: []string{"b"},
33
+
Usage: "Build an environment interactively, suitable for non-technical users",
34
+
Subcommands: []*cli.Command{
35
+
{
36
+
Name: "node_set",
37
+
Aliases: []string{"ns"},
38
+
Usage: "Builds a NodeSet and connect it to some networks",
0 commit comments