Skip to content

Commit

Permalink
added test for iamge to pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
a0v0 committed Jun 29, 2024
1 parent a51735d commit 5a48b17
Show file tree
Hide file tree
Showing 40 changed files with 4,439 additions and 535 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ tasks:
- fish -c "omf install foreign-env"
- echo 'fenv source ~/.profile' > ~/.config/fish/config.fish
- npx playwright install chromium --with-deps
# FIXME: add headed browser support for playwright
# FIXME: add headed browser support for playwright
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,5 @@ local

# Sentry Config File
.sentryclirc

temp
18 changes: 9 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"testing.openTesting": "neverOpen",
"i18n-ally.localesPaths": [
"src/locales"
],
"i18n-ally.keystyle": "nested",
"i18n-ally.sourceLanguage": "en",
"typescript.tsdk": "node_modules/typescript/lib"
}
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"testing.openTesting": "neverOpen",
"i18n-ally.localesPaths": ["src/locales"],
"i18n-ally.keystyle": "nested",
"i18n-ally.sourceLanguage": "en",
"typescript.tsdk": "node_modules/typescript/lib",
"todo-tree.tree.showBadges": false,
"todo-tree.tree.disableCompactFolders": true
}
6 changes: 6 additions & 0 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,9 @@ tasks:
desc: Clean project
cmds:
- sudo rm -rf .pnpm-store node_modules test-results .next
- task: clean:temp

clean:temp:
desc: Clean temporary files and folders
cmds:
- rm -rf `find . -type d -name temp`
Loading

0 comments on commit 5a48b17

Please sign in to comment.