Skip to content

Instantly share code, notes, and snippets.

@Kerrick
Created June 14, 2017 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kerrick/90978a6234bb062964841df6a687ee62 to your computer and use it in GitHub Desktop.
Save Kerrick/90978a6234bb062964841df6a687ee62 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}
import Resolver from '../../resolver';
import config from '../../config/environment';
const resolver = Resolver.create();
resolver.namespace = {
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
};
export default resolver;
import Ember from 'ember';
import Application from '../../app';
import config from '../../config/environment';
const { run } = Ember;
const assign = Ember.assign || Ember.merge;
export default function startApp(attrs) {
let application;
let attributes = assign({rootElement: "#test-root"}, config.APP);
attributes = assign(attributes, attrs); // use defaults, but you can override;
run(() => {
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});
return application;
}
import resolver from './helpers/resolver';
import {
setResolver
} from 'ember-qunit';
setResolver(resolver);
import { simpleSort, keepSorting } from 'twiddle/utils/sorting';
import { module, test } from 'qunit';
module('Unit | Utility | sorting');
test('keepSorting()', assert => {
assert.expect(11);
assert.equal(keepSorting(1, 0), 1);
assert.equal(keepSorting(-1, 0), -1);
assert.equal(keepSorting(0, 1), 1);
assert.equal(keepSorting(0, -1), -1);
assert.equal(keepSorting(0, 0), 0);
assert.equal(keepSorting(1, -1, 1, -1, 1, -1, 1), 1);
assert.equal(keepSorting(-1, 1, -1, 1, -1, 1, -1), -1);
assert.equal(keepSorting(0, 0, 0, 0, 0, 0, 0, 1), 1);
assert.equal(keepSorting(0, 0, 0, 0, 0, 0, 0, -1), -1);
assert.equal(keepSorting(0, 0, 0, 0, 1, 0, 0, 0), 1);
assert.equal(keepSorting(0, 0, 0, 0, -1, 0, 0, 0), -1);
});
{
"version": "0.12.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": true
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
/**
* Returns the value of the first argument that is not 0.
* @param {...Number} args Each argument must be -1, 0, or 1.
*/
export const keepSorting = (result, ...results) => {
debugger; // So you can find the compiled version of this function
return result !== 0 ? result : !results.length ? 0 : keepSorting(...results);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment