Skip to content

Commit

Permalink
Merge pull request #144 from Belphemur/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Belphemur committed Mar 7, 2021
2 parents c296511 + 9bc7f3a commit 6c204d5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion test/02-jsondb.test.ts
Expand Up @@ -110,7 +110,7 @@ describe('JsonDB', () => {
test('should store the data with typing', () => {
const object = {Hello: "test", World: 0} as Test;
db.push("@/hello", object)
const result = db.getObject<Test>("@");
const result = db.getObject<Test>("@/hello");
expect(result).toBe(object)
})
test('should have data at root', () => {
Expand Down

0 comments on commit 6c204d5

Please sign in to comment.