github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/webui/test/e2e/common/README.md (about) 1 # lafeFS Common E2E Tests 2 3 Tests in this folder are applicable to any combination of database and block adapter. 4 Some features (e.g., import) aren't supported with the local block adapter. 5 Tests that would fail on a local block adapter can be tagged with `@exclude-local`: 6 7 ```JavaScript 8 test("Import @exclude-local", async ({ page }) => { 9 // ... 10 }); 11 ``` 12 13 When running tests using the local adapter, these tests can be excluded: 14 15 ```bash 16 npx playwright test --grep-invert @exclude-local 17 ```