mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-10-31 18:52:30 +00:00
e664bc6af8
This PR allows us to code playwright integration tests that can potentially replace some of our manual tests and allow us automated testing of the app itself. Current technical limitations: * No app level keyboard simulation support (e.g, zoom in, zoom out, etc.) * No code coverage support, so even though we are testing the app, the code coverage does not reflect this fact
68 lines
1.0 KiB
Plaintext
68 lines
1.0 KiB
Plaintext
# OSX
|
|
.DS_Store
|
|
|
|
# ignore compiled lib files
|
|
lib*
|
|
app/lib/*
|
|
app/dist/*
|
|
built-tests
|
|
|
|
# commit a placeholder to keep the app/lib directory
|
|
app/inject
|
|
!app/inject/_placeholder
|
|
!app/lib/.placeholder
|
|
|
|
dist
|
|
package-lock.json
|
|
app/package-lock.json
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
|
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
lib-cov
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
|
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
.grunt
|
|
|
|
# node-waf configuration
|
|
.lock-wscript
|
|
|
|
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
build/Release
|
|
|
|
# Dependency directory
|
|
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
|
|
node_modules
|
|
.nvmrc
|
|
|
|
# Python virtual environment in case it's created for the Castlabs code signing tool
|
|
venv
|
|
|
|
# IntelliJ project files
|
|
.idea
|
|
*.iml
|
|
.run
|
|
out
|
|
gen
|
|
|
|
# Builds when testing npm pack
|
|
nativefier*.tgz
|
|
|
|
.vscode
|
|
|
|
# https://github.com/nektos/act
|
|
.actrc
|
|
|
|
tsconfig.tsbuildinfo
|