Skip to content

Instantly share code, notes, and snippets.

View jrock2004's full-sized avatar

John Costanzo jrock2004

View GitHub Profile
@chantastic
chantastic / .projections.json
Last active February 13, 2024 19:42
ember-cli VIM projections
{
"app/adapters/*.js": {
"command": "adapter",
"template": [
"// export default DS.{capitalize}Adapter.extend();",
]
},
"app/components/*.js": {
"command": "component",
@alanning
alanning / webdriverjs-helpers.js
Last active January 25, 2018 10:18
WebDriverJS Helper functions
var flow = webdriver.promise.controlFlow();
var finish = function (done) {
driver.quit().then(function () {
done();
});
};
var error = function (e) {
driver.quit().then(function () {