Showing with 6,505 additions and 465 deletions.
  1. +5 −3 Gruntfile.js
  2. +0 −27 external/sinon/LICENSE.txt
  3. +0 −409 external/sinon/fake_timers.js
  4. +5,931 −0 external/sinon/sinon-1.14.1.js
  5. +26 −18 src/effects.js
  6. +5 −3 src/effects/Tween.js
  7. +2 −1 src/selector-native.js
  8. +3 −1 test/data/testinit.js
  9. +1 −1 test/index.html
  10. +230 −0 test/unit/animation.js
  11. +4 −2 test/unit/effects.js
  12. +298 −0 test/unit/tween.js
@@ -103,14 +103,15 @@ module.exports = function( grunt ) {
src: "src/**/*.js",
gruntfile: "Gruntfile.js",

// Right now, check only test helpers
test: [ "test/data/testrunner.js" ],
// Check parts of tests that pass
test: [ "test/data/testrunner.js", "test/unit/animation.js", "test/unit/tween.js" ],
release: [ "build/*.js", "!build/release-notes.js" ],
tasks: "build/tasks/*.js"
},
testswarm: {
tests: [
"ajax",
"animation",
"attributes",
"callbacks",
"core",
@@ -126,7 +127,8 @@ module.exports = function( grunt ) {
"selector",
"serialize",
"support",
"traversing"
"traversing",
"tween"
]
},
watch: {

This file was deleted.