@naturalcycles/db-lib
Advanced tools
Comparing version 1.13.0 to 1.13.1
@@ -0,1 +1,8 @@ | ||
## [1.13.1](https://github.com/NaturalCycles/db-lib/compare/v1.13.0...v1.13.1) (2019-09-18) | ||
### Bug Fixes | ||
* daoTest ([808e4a7](https://github.com/NaturalCycles/db-lib/commit/808e4a7)) | ||
# [1.13.0](https://github.com/NaturalCycles/db-lib/compare/v1.12.0...v1.13.0) (2019-09-18) | ||
@@ -2,0 +9,0 @@ |
@@ -48,3 +48,3 @@ "use strict"; | ||
expect(js_lib_1._sortBy(itemsLoaded, 'id')).toEqual(expectedItems.filter(i => i.even)); | ||
q = new dbQuery_1.DBQuery(test_model_1.TEST_TABLE, 'desc').order('id', true); | ||
q = new dbQuery_1.DBQuery(test_model_1.TEST_TABLE, 'desc').order('k1', true); | ||
itemsLoaded = await dao.runQuery(q); | ||
@@ -51,0 +51,0 @@ expect(itemsLoaded).toEqual([...expectedItems].reverse()); |
@@ -38,3 +38,3 @@ { | ||
}, | ||
"version": "1.13.0", | ||
"version": "1.13.1", | ||
"description": "Lowest Common Denominator API to supported Databases", | ||
@@ -41,0 +41,0 @@ "keywords": [ |
@@ -69,3 +69,3 @@ import { _pick, _sortBy } from '@naturalcycles/js-lib' | ||
q = new DBQuery<TestItem>(TEST_TABLE, 'desc').order('id', true) | ||
q = new DBQuery<TestItem>(TEST_TABLE, 'desc').order('k1', true) | ||
itemsLoaded = await dao.runQuery(q) | ||
@@ -72,0 +72,0 @@ expect(itemsLoaded).toEqual([...expectedItems].reverse()) |
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
170339