* Added test run artifacts to git ignore. * Added Cypress run to Travis. * Added the start-server-and-test package. * Added e2e ci scripts. * Split up commands. * Testing e2e after rspecs on same build node. * Move Cypress back to node 0 for Knapsack. * Added folders for build artifacts for failed E2E tests. * Simplified e2e for CI * Using knapsack-pro-cypress now. * Added data-testid to sign up form for tests. * Added forem secret for CI * Updated initial admin fixture. * Reworked test to be a signup test. wip. * Added cypress file upload package. * added fixture for admin profile image. * Updated forem secret for tests. * Added Cypress file upload to Cypress commands. * Changed test to initial sign up for the first admin user. * Fixed test to ensure there are no signup errors. * Added some logging to see what's up. * Added some comments to the test. * Set Chrome web security to false to prevent CORS errors. Co-authored-by: rhymes <rhymes@hey.com>
93 lines
1.6 KiB
Text
93 lines
1.6 KiB
Text
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
#
|
|
# If you find yourself ignoring temporary files generated by your text editor
|
|
# or operating system, you probably want to add a global ignore instead:
|
|
# git config --global core.excludesfile '~/.gitignore_global'
|
|
|
|
# Ignore bundler config.
|
|
/.bundle
|
|
vendor/bundle
|
|
|
|
# Ignore all logfiles and tempfiles.
|
|
/log/*
|
|
!/log/.keep
|
|
/tmp
|
|
.DS_Store
|
|
.swp
|
|
.approvals
|
|
.torus.json
|
|
coverage
|
|
/tags
|
|
|
|
# Ignore public uploads
|
|
/public/uploads/*
|
|
/public/c/*
|
|
/public/i/*
|
|
/public/assets/*
|
|
|
|
# Ignore node_modules
|
|
node_modules/
|
|
|
|
# Generated js bundles
|
|
/app/assets/javascripts/generated/*
|
|
latest.dump
|
|
.byebug_history
|
|
.gitdocs_build/
|
|
|
|
# Ignore application configuration
|
|
/config/application.yml
|
|
/config/application_unused.yml
|
|
/public/packs
|
|
/public/packs-test
|
|
/node_modules
|
|
yarn-debug.log*
|
|
.yarn-integrity
|
|
.env
|
|
|
|
# Ignore storybook static site generation
|
|
app/javascript/storybook-static/
|
|
yarn-error.log
|
|
|
|
# Ignore package-lock.json because we use yarn
|
|
package-lock.json
|
|
|
|
#Jetbrains Tools
|
|
.idea/
|
|
|
|
#sitemap
|
|
/public/sitemap.xml.gz
|
|
|
|
# Development Docker storage location
|
|
_docker-storage/
|
|
|
|
# YARD generated doc (in the Gitdocs folder)
|
|
docs/.static/ruby-doc/
|
|
# ReDoc generated API doc (in the Gitdocs folder)
|
|
docs/.static/api/
|
|
|
|
# AWS Cloud9 specific folder for user settings
|
|
.c9/
|
|
|
|
# rvm
|
|
.ruby-gemset
|
|
|
|
# rbenv
|
|
.rbenv-vars
|
|
|
|
# asdf
|
|
.tool-versions
|
|
|
|
# Container volumes
|
|
db_data
|
|
es_data
|
|
gem_cache
|
|
|
|
# Compose generated files
|
|
bundle_finished
|
|
|
|
# Auto-generated Storybook stories
|
|
app/javascript/generated_stories/
|
|
|
|
# Cypress test run artifacts
|
|
cypress/videos
|
|
cypress/screenshots
|