-
Notifications
You must be signed in to change notification settings - Fork 3
/
Taskfile.yml
36 lines (31 loc) · 1.48 KB
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: '3'
tasks:
serve:
cmds:
- echo "Starting server on http://localhost:8000"
- npx http-server ./src -p 8000
test:
dir: tests
cmds:
- npm run test
test-ui:
dir: tests
cmds:
- npm run test-ui
test-report:
dir: tests
cmds:
- npm run test-report
update-screenshots:
dir: tests
ignore_error: true
cmds:
- npm run update-screenshots
- cp test-results/generate-pdf-PDF-generation-border-chromium/test-pdf.foldable.pdf files/test-pdf.foldable.border.pdf
- cp test-results/generate-pdf-PDF-generation-defaults-chromium/test-pdf.foldable.pdf files/test-pdf.foldable.pdf
- cp test-results/generate-pdf-PDF-generation-horizontal-enforced-chromium/test-pdf.foldable.pdf files/test-pdf.foldable.horizontal.pdf
- cp test-results/generate-pdf-PDF-generation-no-rows-chromium/test-pdf.foldable.pdf files/test-pdf.foldable.no-rows.pdf
- cp test-results/generate-pdf-PDF-generation-target-size-mini-cover-chromium/test-pdf.foldable.pdf files/test-pdf.foldable.mini-cover.pdf
- cp test-results/generate-pdf-PDF-generation-target-size-mini-fit-chromium/test-pdf.foldable.pdf files/test-pdf.foldable.mini-fit.pdf
- cp test-results/generate-pdf-PDF-generation-target-size-mini-stretch-chromium/test-pdf.foldable.pdf files/test-pdf.foldable.mini-stretch.pdf
- cp test-results/generate-pdf-PDF-generation-vertical-enforced-chromium/test-pdf.foldable.pdf files/test-pdf.foldable.vertical.pdf