change test structure, create elasticsearch fixture

This commit is contained in:
2016-04-15 16:51:38 -07:00
parent 600f2eb529
commit 822019f12a
4 changed files with 15 additions and 7 deletions

6
test/fixtures/elasticsearch.js vendored Normal file
View File

@@ -0,0 +1,6 @@
function Client() {}
Client.prototype.index = function () {};
export default {
Client: Client
};