diff options
| author | Serghei Iakovlev <egrep@protonmail.ch> | 2024-04-07 00:25:15 +0200 |
|---|---|---|
| committer | Serghei Iakovlev <egrep@protonmail.ch> | 2024-04-07 10:42:25 +0200 |
| commit | 9dae69ef3282aa7c3ebd5243b77199108ad595f9 (patch) | |
| tree | 4e18585fe3b95e6603c34287efeb00fd237be98f /.gitignore | |
| parent | 34f9e78c69183627a82e03e32563d15b73a33782 (diff) | |
| download | gohugo-theme-ed-9dae69ef3282aa7c3ebd5243b77199108ad595f9.tar.gz | |
Add support of E2E tests using Playwright
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -5,12 +5,22 @@ # # https://help.github.com/articles/ignoring-files/#create-a-global-gitignore -# Directories to ignore (do not add trailing '/'s, they skip symlinks). +# Directories to ignore (do not add trailing '/'s, they skip symlinks): # Generated files from NPM. /node_modules # Generated files by hugo. /public +# Playwright test results +/test-results +# Playwright report. +/playwright-report +# Playwright blob report. +/blob-report +# Playwright cache. +/playwright/.cache + +# Files to ignore: # Temporary lock file while building. .hugo_build.lock |
