Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js-data-adapter-tests

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-data-adapter-tests - npm Package Compare versions

Comparing version 2.0.0-alpha.2 to 2.0.0-alpha.3

dist/js-data-adapter-tests.js.map

8

CHANGELOG.md

@@ -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 @@

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc