From 8248271056a7bdcfb08904337473f39dc352f596 Mon Sep 17 00:00:00 2001 From: Daniel Freedman Date: Mon, 21 Oct 2013 10:21:37 -0700 Subject: [PATCH] Configure bower to allow for inplace upgrades of mocha and chai --- test/.bowerrc | 3 +++ test/bower.json | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 test/.bowerrc create mode 100644 test/bower.json diff --git a/test/.bowerrc b/test/.bowerrc new file mode 100644 index 000000000..b316080f0 --- /dev/null +++ b/test/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "." +} diff --git a/test/bower.json b/test/bower.json new file mode 100644 index 000000000..f38ae939c --- /dev/null +++ b/test/bower.json @@ -0,0 +1,22 @@ +{ + "name": "test", + "version": "0.0.20131010", + "homepage": "https://github.com/Polymer/tools", + "authors": [ + "Daniel Freedman " + ], + "license": "BSD", + "private": true, + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + ".", + "test", + "tests" + ], + "dependencies": { + "chai": "~1.8.1", + "mocha": "~1.13.0" + } +}