Socket
Socket
Sign inDemoInstall

final-orm

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

final-orm - npm Package Compare versions

Comparing version 1.0.0-alpha.9 to 1.0.0-alpha.10

14

dist/index.test.js

@@ -262,2 +262,16 @@ 'use strict';

expect(post.creator.name).toBe(username);
});
test('complex query', async function () {
var posts = await Post.findAndCount({
limit: 5,
skip: 0,
sort: 'createdAt DESC',
include: {
as: 'creator',
where: { name: username }
}
});
expect(posts.data[0].creator.name).toBe(username);
});

@@ -196,1 +196,15 @@ import dotenv from 'dotenv'

})
test('complex query', async () => {
const posts = await Post.findAndCount({
limit: 5,
skip: 0,
sort: 'createdAt DESC',
include: {
as: 'creator',
where: {name: username}
}
})
expect(posts.data[0].creator.name).toBe(username)
})

4

package.json
{
"name": "final-orm",
"version": "1.0.0-alpha.9",
"version": "1.0.0-alpha.10",
"repository": {

@@ -49,3 +49,3 @@ "type": "git",

"arangojs": "^5.7.0",
"arangolize": "^0.9.6",
"arangolize": "^0.9.7",
"core-decorators": "^0.20.0",

@@ -52,0 +52,0 @@ "dotenv": "^4.0.0",

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