You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add routes to use Boot2Docker and AnyConnect at the same time on OSX.
Using boot2docker and AnyConnect at the same time
Boot2Docker works great, so does AnyConnect but running the two together causes traffic intended for Boot2Docker to head down the VPN link, this ruining everything.
Investigation
Tale a look at what network your Docker VirtualBox VM is on:
Make your rake and rspec commands talk instead of sitting like a dumbass looking at the screen. Go grab some coffee!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Testing React components seems simple at first. Then you need to test something that isn't a pure interaction and
things seem to break down. These 4 patterns should help you write readable, flexible tests for the type of component you are testing.
Setup
I recommend doing all setup in the most functional way possible. If you can avoid it, don't set variables in a
beforeEach. This will help ensure tests are isolated and make things a bit easier to reason about. I use a pattern
that gives great defaults for each test example but allows every example to override props when needed:
up: script to keep your Mac up-to-date (both OS and Homebrew updates) via the command line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters