-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.gitignore
36 lines (29 loc) · 924 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/tests/test-app/node_modules/
/node_modules
/tests/test-app/.pnp
.pnp.js
# this is to work around travis ci issues:
# travis only allows you to request the current stable or beta versions of chrome, not a specific version
# chromedriver versions are tied to specific chrome versions
# we currently request chrome stable in .travis.yml and the latest stable chromedriver in package.json
# however, if there is a package-lock.json it will specify a particular version of chromedriver and travis-ci will use that
# this then leads to test failures later on when they get out of sync
package-lock.json
# testing
/coverage
/tests_output
chromedriver.log
# next.js
/tests/test-app/.next/
/tests/test-app/out/
# production
/tests/test-app/build
# misc
.DS_Store
.env*
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*