js-data-adapter-tests
Advanced tools
Comparing version 2.0.0-alpha.2 to 2.0.0-alpha.3
@@ -0,1 +1,9 @@ | ||
##### 2.0.0-alpha.3 - 16 February 2016 | ||
- Added source map | ||
##### 2.0.0-alpha.2 - 16 February 2016 | ||
- Soem fixes | ||
##### 2.0.0-alpha.1 - 13 February 2016 | ||
@@ -2,0 +10,0 @@ |
{ | ||
"name": "js-data-adapter-tests", | ||
"description": "Tests for js-data adapters.", | ||
"version": "2.0.0-alpha.2", | ||
"version": "2.0.0-alpha.3", | ||
"homepage": "http://www.js-data.io", | ||
@@ -6,0 +6,0 @@ "repository": { |
/* global assert:true */ | ||
module.exports = function (options) { | ||
describe('Adapter#create', function () { | ||
it('should exist', function * () { | ||
it('should exist', function () { | ||
assert.equal(typeof this.$$adapter.create, 'function', 'adapter should have a "create" method') | ||
@@ -6,0 +6,0 @@ }) |
@@ -153,8 +153,8 @@ require('babel-polyfill') | ||
afterEach(function * () { | ||
yield this.$$adapter.destroyAll(this.$$Comment) | ||
yield this.$$adapter.destroyAll(this.$$Post) | ||
yield this.$$adapter.destroyAll(this.$$User) | ||
yield this.$$adapter.destroyAll(this.$$Profile) | ||
yield this.$$adapter.destroyAll(this.$$Address) | ||
afterEach(async function () { | ||
await this.$$adapter.destroyAll(this.$$Comment) | ||
await this.$$adapter.destroyAll(this.$$Post) | ||
await this.$$adapter.destroyAll(this.$$User) | ||
await this.$$adapter.destroyAll(this.$$Profile) | ||
await this.$$adapter.destroyAll(this.$$Address) | ||
}) | ||
@@ -161,0 +161,0 @@ }, |
module.exports = { | ||
devtool: 'source-map', | ||
entry: './src/index.js', | ||
@@ -3,0 +4,0 @@ output: { |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1024605
19
13902