Upgrade QUnit to latest version

This commit is contained in:
Robin Ward
2017-06-14 13:57:58 -04:00
parent 8ae445766f
commit cc525b1a8d
145 changed files with 7569 additions and 6763 deletions
@@ -8,7 +8,7 @@ const template = `{{mount-widget
widgetTest('single, not selected', {
template,
setup() {
beforeEach() {
this.set('option', { id: 'opt-id' });
this.set('vote', []);
},
@@ -21,7 +21,7 @@ widgetTest('single, not selected', {
widgetTest('single, selected', {
template,
setup() {
beforeEach() {
this.set('option', { id: 'opt-id' });
this.set('vote', ['opt-id']);
},
@@ -34,7 +34,7 @@ widgetTest('single, selected', {
widgetTest('multi, not selected', {
template,
setup() {
beforeEach() {
this.setProperties({
option: { id: 'opt-id' },
isMultiple: true,
@@ -50,7 +50,7 @@ widgetTest('multi, not selected', {
widgetTest('multi, selected', {
template,
setup() {
beforeEach() {
this.setProperties({
option: { id: 'opt-id' },
isMultiple: true,
@@ -8,7 +8,7 @@ const template = `{{mount-widget
widgetTest('options in descending order', {
template,
setup() {
beforeEach() {
this.set('poll', Ember.Object.create({
options: [{ votes: 5 }, { votes: 4 }],
voters: 9
@@ -24,7 +24,7 @@ widgetTest('options in descending order', {
widgetTest('options in ascending order', {
template,
setup() {
beforeEach() {
this.set('poll', Ember.Object.create({
options: [{ votes: 4 }, { votes: 5 }],
voters: 9
@@ -40,7 +40,7 @@ widgetTest('options in ascending order', {
widgetTest('multiple options in descending order', {
template,
setup() {
beforeEach() {
this.set('isMultiple', true);
this.set('poll', Ember.Object.create({
type: 'multiple',