Skip to content

Commit

Permalink
Merge pull request #491 from kellyselden/sinon
Browse files Browse the repository at this point in the history
replace vendor/sinon with ember-sinon
  • Loading branch information
ef4 committed Sep 4, 2016
2 parents 3829873 + eca37cf commit 1565161
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 5,750 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Comprehensive animation support for ambitious Ember applications. [Interactive D

- Backed by velocity.js, but easy to extend to other animation drivers
if there's interest.


## Ember Compatibility Table

Expand All @@ -38,7 +38,7 @@ welcome, but new feature work happens on `master`.

## Installation

This is an ember-cli addon, so all you need is an npm install.
This is an ember-cli addon, so all you need is an npm install.
For Ember 1.13 or newer, use:

ember install liquid-fire
Expand All @@ -49,7 +49,7 @@ For older ember versions, consult the compatibility table above to pick the righ
ember install liquid-fire@^0.19.0


### Documentation
### Documentation

[Liquid Fire website](http://ember-animation.github.io/liquid-fire) is an ember-cli application that contains an
interactive demo & documentation. It runs from Liquid Fire's [test dummy app](https://github.com/ember-animation/liquid-fire/tree/master/tests/dummy/app).
Expand All @@ -71,6 +71,3 @@ addon format.
### Selecting Ember Versions

Liquid Fire is tested against many versions of Ember using [ember-try](https://github.com/ember-cli/ember-try). The oldest supported version is listed in `versionCompatibility` in `package.json`, and in CI we test every minor release since then, through beta and canary.



1 change: 0 additions & 1 deletion ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ module.exports = function(defaults) {
}
});
app.import('bower_components/moment/moment.js');
app.import('vendor/sinon.js', { type: 'test'});

if (!/^1\.[89]/.test(require('./bower_components/ember/bower.json').version)) {
app.import('bower_components/ember/ember-template-compiler.js', { type: 'test' });
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"ember-code-snippet": "^1.0.0",
"ember-load-initializers": "^0.5.0",
"ember-resolver": "^2.0.3",
"ember-sinon": "^0.5.1",
"git-repo-info": "^1.0.4",
"github": "git://github.com/mikedeboer/node-github#ca90bf27d5820812c3b76908189d666446ed97cd",
"loader.js": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/helpers/integration.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* global sinon */
import Ember from "ember";
import sinon from 'sinon';

function transitionMap(app) {
return app.__container__.lookup('service:liquid-fire-transitions');
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/helpers/liquid-bind-block-form-test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global sinon */
import Ember from "ember";
import { test, moduleForComponent } from "ember-qunit";
import sinon from 'sinon';

moduleForComponent('Integration: liquid-bind block form', {
integration: true,
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/helpers/liquid-bind-test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global sinon */
import Ember from "ember";
import { test, moduleForComponent } from "ember-qunit";
import sinon from 'sinon';

moduleForComponent('Integration: liquid-bind', {
integration: true,
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/helpers/liquid-if-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* global sinon */
import Ember from "ember";
import { skip } from 'qunit';
import { test, moduleForComponent } from "ember-qunit";
import sinon from 'sinon';

moduleForComponent('Integration: liquid-if', {
integration: true,
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/helpers/liquid-outlet-test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* global sinon */
import Ember from "ember";
import { skip } from 'qunit';
import { test, moduleForComponent } from "ember-qunit";
import { withTemplate } from "../../helpers/outlet";
import sinon from 'sinon';

var top, topState, controller, stageView;

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/helpers/liquid-spacer-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* global sinon */
import { test, moduleForComponent } from "ember-qunit";
import { testingKick } from "liquid-fire/mutation-observer";
import LiquidSpacer from "liquid-fire/components/liquid-spacer";
import sinon from 'sinon';

var tmap;

Expand Down
Loading

0 comments on commit 1565161

Please sign in to comment.