βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Red ββββΊ Green ββββΊ[TCR]ββββΊ Refactor ββββΊ[TCR]ββββΊ Done β
β β
β [TCR] = test βββ¬ββ pass βββΊ commit βββΊ continue β
β βββ fail βββΊ REVERT βββΊ RETHINK β
β β
π©βπ»
- https://on.auto | https://xolv.io
- @sam_hatoum
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
| const { ApolloServer, gql } = require('apollo-server'); | |
| // Construct a schema, using GraphQL schema language | |
| const typeDefs = gql` | |
| type Query { | |
| hello: String | |
| order(orderId: String!): Order | |
| } | |
| type Order { |
I hereby claim:
- I am samhatoum on github.
- I am samhatoum (https://keybase.io/samhatoum) on keybase.
- I have a public key ASABTKWQxZ1B5hcER0eHPAq3oqnIYASaHUcmHmSvvmnnUwo
To claim this, I am signing this object:
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
| find . -name '*.es6.js' -print0 | xargs -0 -n1 bash -c 'mv "$0" "${0/.es6.js/.js}"' |
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
| # First start chromedriver from the console like this | |
| chromedriver --url-base=wd/hub --verbose | |
| # Then in another tab / window: issue a command to start a new chrome session via the JSON protocol | |
| curl -XPOST http://localhost:9515/wd/hub/session -d '{"desiredCapabilities":{"browserName":"chrome"}}' | |
| # If you can see a chrome window pop up, you're all set. If not, check the chromedriver output and fix your issue |