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: doc/e2e-testing.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ An executable for concrete tests is also needed. For a working example see `test
29
29
30
30
The process is as follows:
31
31
32
-
1. Set `ps-entrypoint` in Makefile to `Examples.ByURL`.
32
+
1. Set `ps-entrypoint` in Makefile to `CTL.Examples.ByURL`.
33
33
2. run `make run-dev`.
34
34
3. In another shell, run `make e2e-test`.
35
35
4. Examples will be run headless by default. In case of errors, the browser console will be printed to the console.
@@ -52,7 +52,7 @@ Chrome extensions are unpacked to some directory by the browser. From there, the
52
52
The default test suite accepts the arguments `--nami-dir` and `--gero-dir` to point to the directories from which the extensions are loaded. (see the Makefile) In order to use the "live" version of an extension, just pass the arguments accordingly, e.g.:
53
53
54
54
```
55
-
@spago test --main Test.E2E -a "E2ETest --nami-dir ~/.config/google-chrome/Default/Extensions/lpfcbjknijpeeillifnkikgncikgfhdo/ --gero-dir ~/.config/google-chrome/Default/Extensions/iifeegfcfhlhhnilhfoeihllenamcfgc --chrome-exe google-chome
55
+
@spago test --main Test.CTL.E2E -a "E2ETest --nami-dir ~/.config/google-chrome/Default/Extensions/lpfcbjknijpeeillifnkikgncikgfhdo/ --gero-dir ~/.config/google-chrome/Default/Extensions/iifeegfcfhlhhnilhfoeihllenamcfgc --chrome-exe google-chome
56
56
```
57
57
58
58
### Where to Find the Installed Extensions
@@ -101,7 +101,7 @@ A new settings tarball can be easily created, for example using the `Makefile`:
101
101
102
102
If you are using CTL as a library, you can and should create your own test suite to test your own contracts.
103
103
104
-
1. Take `test/E2E.purs` as inspiration and create your own binary. You will find the necessary machinery in `Contract.Test.E2E`. Notable components:
104
+
1. Take `test/E2E.purs` as inspiration and create your own binary. You will find the necessary machinery in `CTL.Contract.Test.E2E`. Notable components:
105
105
-`withBrowser`: bracket to launch the browser with a specific extension, run something and clos the browser.
106
106
-`parseOptions`: Parses command line options, in case you want to use the same as our example suite.
107
107
-`publishTestFeedback`, `resetTestFeedback`, `retrieveTestFeedback`: Can be used to communicate success or failure from a contract to the tests.
Copy file name to clipboardexpand all lines: doc/getting-started.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ You will also need to become familiar with [CTL's runtime](./runtime.md) as its
46
46
47
47
### The `Contract` interface
48
48
49
-
CTL's public interface is contained in the `Contract.*` namespace. We recommend to always prefer imports from the `Contract` namespace. That is, **avoid importing any CTL modules not contained in `Contract`**, which should be considered internal. Importing non-`Contract` modules will make your code more brittle and susceptible to breakages when upgrading CTL versions.
49
+
CTL's public interface is contained in the `CTL.Contract.*` namespace. We recommend to always prefer imports from the `Contract` namespace. That is, **avoid importing any CTL modules in `CTL.Internal.*`**. Importing internal modules will make your code more brittle and susceptible to breakages when upgrading CTL versions.
50
50
51
51
For example, avoid the following:
52
52
@@ -55,17 +55,17 @@ For example, avoid the following:
55
55
-- Anything not in in the `Contract` namespace should be considered an
0 commit comments