-
Notifications
You must be signed in to change notification settings - Fork 3
FAQ
Wayne Irwin edited this page Apr 9, 2019
·
6 revisions
How do I run a subset of tests?
When you run ./go test:dev
, this will start Jest in watch mode. It will present you with options on how to filter your tests.
You can also do the following:
describe.only('group of tests', () => { ... })
it.only('single test', () => { ... })
Error: libsass
bindings not found. Try reinstalling node-sass
?
You've probably switched node version. Try running npm rebuild node-sass
Forgot to commit your new code on Gitpod? How do i pick up from my last Gitpod session?
- Access gitpod.io
- Click open on your previous session. (Gitpod snapshots the state of your IDE when you close it , if you have multiple session try and figure out which one you left the code in based on the created by date)