Skip to content

Instantly share code, notes, and snippets.

View davidtorroija's full-sized avatar
🏠
Working from home

David davidtorroija

🏠
Working from home
View GitHub Profile
{
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"enable_tab_scrolling": false,
"find_selected_text": true,
"folder_exclude_patterns":
[
"node_modules",
".git",
".sass-cache"
@davidtorroija
davidtorroija / nightwatch.json
Created April 11, 2016 21:49
nightwatch json file to start e2e tests from scratch
{
"src_folders" : ["tests"],
"output_folder" : "./reports",
"custom_commands_path" : ["./node_modules/nightwatch-commands/commands/","./custom-commands/"],
"custom_assertions_path" : "./node_modules/nightwatch-commands/commands/",
"page_objects_path" : "./page-objects/",
"globals_path" : "",
"skip_testcases_on_fail": "false",
"end_session_on_fail": "false",
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Capo-Light (SL).tmTheme",
"enable_tab_scrolling": false,
"find_selected_text": true,
"font_size": 16,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
@davidtorroija
davidtorroija / wercker-config-nightwatch-mocha.yml
Created April 11, 2016 21:46
Wercker CI config file to run in a Node Box: nightwatch with mocha, firefox and a custom nightwatch.json that differs from the dev file, also installs java to run selenium
box: node
build:
steps:
- script:
name: setup
code: |
sudo apt-get update -y -qq
- install-packages:
packages: ruby ruby-dev bzr mercurial git wget
- script: