This file contains 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
-------------------------------------------------------------------------------- | |
-- Minimal, self-contained Neo-tree keymap setup | |
-- Project tree: <leader>ee | |
-- Buffer tree: <leader>eb | |
-- Git tree: <leader>ee | |
-- Close tree: <leader>eq | |
-- Toggle between buffer and tree: q | |
-- disable some of the default neo tree keys for this to work |
This file contains 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
{ | |
"graphql": "yarn merge-graphql-schema;yarn generate-graphql-schema-json;yarn generate-graphql-schema-typings", | |
"merge-graphql-schema": "cd graphql;rm final.schema.graphql;get-graphql-schema http://my.remote.schema:3030/graphql > remote.merge.schema.graphql;gql merge **/*.graphql > final.schema.graphql", | |
"generate-graphql-schema-json": "cd graphql;apollo-codegen introspect-schema final.schema.graphql --output schema.json", | |
"generate-graphql-schema-typings": "cd graphql;gql-gen --schema schema.json --template typescript --out ../typings/graphql.d.ts;rm schema.json", | |
} |
This file contains 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
package co.uk.myapp.beachroidtest; | |
import android.app.Fragment; | |
import android.app.Instrumentation; | |
import android.test.ActivityInstrumentationTestCase2; | |
import android.test.TouchUtils; | |
import android.test.ViewAsserts; | |
import android.view.View; | |
public class MainActivityTest extends ActivityInstrumentationTestCase2<MainActivity> { |