@feathersjs/adapter-tests
Advanced tools
Comparing version 4.5.11 to 4.5.12
@@ -6,2 +6,13 @@ # Change Log | ||
## [4.5.12](https://github.com/feathersjs/databases/compare/v4.5.11...v4.5.12) (2022-01-06) | ||
### Bug Fixes | ||
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/databases/issues/2520)) ([1c63e6b](https://github.com/feathersjs/databases/commit/1c63e6be37ff85edbe8dd318415ca6919864c033)) | ||
## [4.5.11](https://github.com/feathersjs/databases/compare/v4.5.10...v4.5.11) (2020-12-05) | ||
@@ -8,0 +19,0 @@ |
@@ -39,5 +39,5 @@ "use strict"; | ||
}); | ||
basic_1.default(test, app, errors, serviceName, idProp); | ||
methods_1.default(test, app, errors, serviceName, idProp); | ||
syntax_1.default(test, app, errors, serviceName, idProp); | ||
(0, basic_1.default)(test, app, errors, serviceName, idProp); | ||
(0, methods_1.default)(test, app, errors, serviceName, idProp); | ||
(0, syntax_1.default)(test, app, errors, serviceName, idProp); | ||
}); | ||
@@ -44,0 +44,0 @@ }; |
{ | ||
"name": "@feathersjs/adapter-tests", | ||
"version": "4.5.11", | ||
"version": "4.5.12", | ||
"description": "Feathers shared database adapter test suite", | ||
@@ -50,9 +50,9 @@ "homepage": "https://feathersjs.com", | ||
"devDependencies": { | ||
"@types/node": "^14.14.10", | ||
"mocha": "^8.2.1", | ||
"@types/node": "^17.0.8", | ||
"mocha": "^9.1.3", | ||
"shx": "^0.3.3", | ||
"ts-node": "^9.1.0", | ||
"typescript": "^4.1.2" | ||
"ts-node": "^10.4.0", | ||
"typescript": "^4.5.4" | ||
}, | ||
"gitHead": "de0526849eb36ab6ef19ef1764e0d9e0a6ccbd81" | ||
"gitHead": "8697ecc85808437e9aab63e5d2327679340c5401" | ||
} |
@@ -19,3 +19,3 @@ import assert from 'assert'; | ||
await app.service(serviceName).remove(doug[idProp]); | ||
} catch (error) {} | ||
} catch (error: any) {} | ||
}); | ||
@@ -52,3 +52,3 @@ | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -64,3 +64,3 @@ 'Got a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -83,3 +83,3 @@ 'Error is a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -125,3 +125,3 @@ 'Got a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -137,3 +137,3 @@ 'Got a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'MethodNotAllowed', | ||
@@ -176,3 +176,3 @@ 'Removing multiple without option set throws MethodNotAllowed' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -227,3 +227,3 @@ 'Got a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -239,3 +239,3 @@ 'Got a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -256,3 +256,3 @@ 'Error is a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -279,3 +279,3 @@ 'Error is a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -326,3 +326,3 @@ 'Got a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -338,3 +338,3 @@ 'Got a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'MethodNotAllowed', | ||
@@ -433,3 +433,3 @@ 'Removing multiple without option set throws MethodNotAllowed' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -450,3 +450,3 @@ 'Error is a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -472,3 +472,3 @@ 'Error is a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'NotFound', | ||
@@ -522,3 +522,3 @@ 'Got a NotFound Feathers error' | ||
throw new Error('Should never get here'); | ||
} catch (error) { | ||
} catch (error: any) { | ||
assert.strictEqual(error.name, 'MethodNotAllowed', | ||
@@ -525,0 +525,0 @@ 'Removing multiple without option set throws MethodNotAllowed' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
112261