diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-05-16 23:46:04 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-05-16 23:46:04 +0200 |
commit | 837cc126d35dfa1387d0073fdb7f45fa36543f4b (patch) | |
tree | 3c42bb54ded1908b587722c210ecec0a7ab48a78 /.config | |
parent | 82b3524c10b10094c7a6129639a34ca7c034dbdc (diff) | |
download | svg.js-837cc126d35dfa1387d0073fdb7f45fa36543f4b.tar.gz svg.js-837cc126d35dfa1387d0073fdb7f45fa36543f4b.zip |
add requestAnimationFrame Mock and tests for the animator
Diffstat (limited to '.config')
-rw-r--r-- | .config/karma.conf.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/karma.conf.js b/.config/karma.conf.js index 42ceb39..9ea2a89 100644 --- a/.config/karma.conf.js +++ b/.config/karma.conf.js @@ -16,6 +16,7 @@ module.exports = function(config) { // list of files / patterns to load in the browser files: [ '.config/pretest.js', + 'spec/lib/RAFPlugin.js', { pattern: 'spec/fixtures/fixture.css', included: false, @@ -34,7 +35,7 @@ module.exports = function(config) { 'dist/svg.js', 'spec/spec/**/*.js' ], - + proxies: { '/fixtures/': '/base/spec/fixtures/' }, |