Skip to content

Commit dc38ab5

Browse files
Make it clear that the dots mean CSS is starting (#102)
* Make it clear that the dots mean CSS is starting When I ran `./run.sh -d . css --filter=content-negotiation` I was surprised by the number of dots, at how many tests (I thought) there were in the content-negotiation category. But after reading the code of `run.sh`, I realised I had misinterpreted the dots! :) This extra console message should hopefully make that clearer. * Mention /etc/hosts edit * Update README.md --------- Co-authored-by: Pete Edwards <edwardsph@users.noreply.github.com>
1 parent 35008eb commit dc38ab5

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ tests available locally.
4646
For each test subject you want to test, create a `{subject}.env` file in this directory according to the instructions
4747
[here](https://hub.docker.com/r/solidproject/conformance-test-harness).
4848

49+
If you are testing a local server, add the following line to your `/etc/hosts` file rather than use `http://localhost`:
50+
```
51+
127.0.0.1 server
52+
```
53+
4954
To see the usage instructions:
5055
```shell
5156
./run.sh

run.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ EOF
9090
--httpsKey=/certs/server.key --httpsCert=/certs/server.cert \
9191
--port=443 --baseUrl=https://server/
9292

93+
echo 'Please wait while CSS is starting up'
9394
until $(curl --output /dev/null --silent --head --fail -k https://server); do
9495
printf '.'
9596
sleep 1

0 commit comments

Comments
 (0)