Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(build): lets make test install playwright #394

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore(build): lets make test install playwright
Also adds a note in the readme about it
dmihalcik-virtru committed Dec 3, 2024
commit 14541fc0e53b56ce0bee75b25d1d2097bec831bd
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -40,7 +40,11 @@ dist: lib/opentdf-sdk-$(version).tgz
audit:
for x in $(pkgs); do (cd $$x && npm audit --omit dev) || exit 1; done

format license-check lint test: ci
format license-check lint: ci
for x in $(pkgs); do (cd $$x && npm run $@) || exit 1; done

test: ci
cd web-app && npx install playwright
for x in $(pkgs); do (cd $$x && npm run $@) || exit 1; done

doc:
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -107,6 +107,9 @@ make test
make start
```

Note: `make test` will install playwright and any necessary browser components,
which may be several hundred megabytes in size.

## Use the platform

Version 2 of this library adds support for ABAC management tasks.