Skip to content

Commit a6f2b19

Browse files
committed
3.0.0-alpha.6
1 parent d4de3bf commit a6f2b19

File tree

9 files changed

+223
-172
lines changed

9 files changed

+223
-172
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 3.0.0-alpha.6 - 01 March 2016
2+
3+
###### Backwards compatible bug fixes
4+
- Couple of fixes based on the latest js-data-adapter-tests
5+
16
##### 3.0.0-alpha.5 - 27 February 2016
27

38
###### Backwards compatible API changes

CONTRIBUTORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# Names should be added to this file as:
66
# [commit count] Name <email address>
77
1 InternalFX <bryan@internalfx.com>
8-
50 Jason Dobry <jason.dobry@gmail.com>
8+
53 Jason Dobry <jason.dobry@gmail.com>
99
2 Ollie Relph <ollie@relph.me>

dist/js-data-rethinkdb.js

Lines changed: 94 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js-data-rethinkdb.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mocha.start.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,23 @@
33

44
// prepare environment for js-data-adapter-tests
55
require('babel-polyfill')
6-
global.assert = require('chai').assert
76

87
var JSData = require('js-data')
9-
var TestRunner = require('js-data-adapter-tests')
8+
var JSDataAdapterTests = require('js-data-adapter-tests')
109
var RethinkDBAdapter = require('./')
1110

12-
TestRunner.init({
11+
global.assert = JSDataAdapterTests.assert
12+
global.sinon = JSDataAdapterTests.sinon
13+
14+
JSDataAdapterTests.init({
1315
debug: false,
1416
JSData: JSData,
1517
Adapter: RethinkDBAdapter,
16-
adapterConfig: {},
18+
adapterConfig: {
19+
min: 1,
20+
max: 5,
21+
bufferSize: 5
22+
},
1723
storeConfig: {
1824
bypassCache: true,
1925
linkRelations: false,

0 commit comments

Comments
 (0)