Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/julianrubisch/view_component_reflex_harness
https://github.com/julianrubisch/view_component_reflex_harness
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/julianrubisch/view_component_reflex_harness
- Owner: julianrubisch
- Created: 2020-11-05T08:19:54.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-29T12:11:59.000Z (over 3 years ago)
- Last Synced: 2024-12-12T14:34:25.584Z (15 days ago)
- Language: Ruby
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StimulusReflex test harness app
Purpose: Verify a bare-bones SR application. Branch it to build MVCEs.
Prerequisites: Postgres and Redis
Preamble: `bundle config local.stimulus_reflex /path/to/stimulus_reflex`
Point your `stimulus_reflex` to the correct local branch in `Gemfile`
To install: `bundle install && yarn install && rake db:setup && rake db:migrate`
Optional: `bin/webpack-dev-server`
To run: `rails s`
Notes!
This was generated initially with: `rails new harness --skip-sprockets --skip-spring --skip-coffee --webpack=stimulus --skip-action-mailbox --skip-action-mailer --skip-active-storage --skip-test --skip-action-text --skip-turbolinks --skip-bootsnap`
I'll probably come to regret not including Turbolinks but I wanted everything stripped-down and side-effect free.
I realize that it might seem odd to have a repo intended for MVCEs to have no testing infrastructure set up. As a not-experienced programmatic tester, it seems like I'm the wrong person to tell you how to test what you want to test.