aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc/development/tests.md
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-04-04 09:16:53 +0200
committerChocobozzz <me@florianbigard.com>2023-04-04 09:18:06 +0200
commit00ee545c2444c35ed0d37df9f91984246aa36124 (patch)
tree823ab6b93d9b144bc60adef5c69739b0e8fed808 /support/doc/development/tests.md
parentb5f38b78984c69fd2b4270c50ed58a708174b935 (diff)
downloadPeerTube-00ee545c2444c35ed0d37df9f91984246aa36124.tar.gz
PeerTube-00ee545c2444c35ed0d37df9f91984246aa36124.tar.zst
PeerTube-00ee545c2444c35ed0d37df9f91984246aa36124.zip
Remove $ for bash commands
It prevents easy copy
Diffstat (limited to 'support/doc/development/tests.md')
-rw-r--r--support/doc/development/tests.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/support/doc/development/tests.md b/support/doc/development/tests.md
index 6eb499f0c..c4935b70d 100644
--- a/support/doc/development/tests.md
+++ b/support/doc/development/tests.md
@@ -5,19 +5,19 @@
5Prepare PostgreSQL user so PeerTube can delete/create the test databases: 5Prepare PostgreSQL user so PeerTube can delete/create the test databases:
6 6
7```bash 7```bash
8$ sudo -u postgres createuser you_username --createdb --superuser 8sudo -u postgres createuser you_username --createdb --superuser
9``` 9```
10 10
11Prepare databases: 11Prepare databases:
12 12
13```bash 13```bash
14$ npm run clean:server:test 14npm run clean:server:test
15``` 15```
16 16
17Build PeerTube: 17Build PeerTube:
18 18
19```bash 19```bash
20$ npm run build 20npm run build
21``` 21```
22 22
23## Server tests 23## Server tests
@@ -27,20 +27,20 @@ $ npm run build
27Run docker containers needed by some test files: 27Run docker containers needed by some test files:
28 28
29```bash 29```bash
30$ sudo docker run -p 9444:9000 chocobozzz/s3-ninja 30sudo docker run -p 9444:9000 chocobozzz/s3-ninja
31$ sudo docker run -p 10389:10389 chocobozzz/docker-test-openldap 31sudo docker run -p 10389:10389 chocobozzz/docker-test-openldap
32``` 32```
33 33
34Ensure you also have these commands: 34Ensure you also have these commands:
35 35
36```bash 36```bash
37$ exiftool --help 37exiftool --help
38$ parallel --help 38parallel --help
39``` 39```
40 40
41Otherwise, install the packages. On Debian-based systems (like Debian, Ubuntu or Mint): 41Otherwise, install the packages. On Debian-based systems (like Debian, Ubuntu or Mint):
42```bash 42```bash
43$ sudo apt-get install parallel libimage-exiftool-perl 43sudo apt-get install parallel libimage-exiftool-perl
44``` 44```
45 45
46### Test 46### Test
@@ -48,7 +48,7 @@ $ sudo apt-get install parallel libimage-exiftool-perl
48To run all test suites: 48To run all test suites:
49 49
50```bash 50```bash
51$ npm run test # See scripts/test.sh to run a particular suite 51npm run test # See scripts/test.sh to run a particular suite
52``` 52```
53 53
54Most of tests can be run using: 54Most of tests can be run using:
@@ -100,7 +100,7 @@ tail -f test1/logs/peertube.log | npm run parse-log -- --level debug --files -
100To run tests on local web browsers (comment web browsers you don't have in `client/e2e/wdio.local.conf.ts`): 100To run tests on local web browsers (comment web browsers you don't have in `client/e2e/wdio.local.conf.ts`):
101 101
102```bash 102```bash
103$ PEERTUBE2_E2E_PASSWORD=password npm run e2e:local 103PEERTUBE2_E2E_PASSWORD=password npm run e2e:local
104``` 104```
105 105
106### Browserstack tests 106### Browserstack tests
@@ -108,7 +108,7 @@ $ PEERTUBE2_E2E_PASSWORD=password npm run e2e:local
108To run tests on browser stack: 108To run tests on browser stack:
109 109
110```bash 110```bash
111$ BROWSERSTACK_USER=your_user BROWSERSTACK_KEY=your_key npm run e2e:browserstack 111BROWSERSTACK_USER=your_user BROWSERSTACK_KEY=your_key npm run e2e:browserstack
112``` 112```
113 113
114### Add E2E tests 114### Add E2E tests
@@ -116,6 +116,6 @@ $ BROWSERSTACK_USER=your_user BROWSERSTACK_KEY=your_key npm run e2e:browserstack
116To add E2E tests and quickly run tests using a local Chrome: 116To add E2E tests and quickly run tests using a local Chrome:
117 117
118```bash 118```bash
119$ cd client/e2e 119cd client/e2e
120$ ../node_modules/.bin/wdio wdio.local-test.conf.ts # you can also add --mochaOpts.grep to only run tests you want 120../node_modules/.bin/wdio wdio.local-test.conf.ts # you can also add --mochaOpts.grep to only run tests you want
121``` 121```