Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Database/Configuration/Buffer.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, expect, it } from "vitest"
import { Buffer } from "./Buffer"

describe("Buffer", () => {
Expand Down
1 change: 1 addition & 0 deletions Database/Cursor.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, expect, it } from "vitest"
import { Cursor } from "./Cursor"
import { Selection } from "./Selection"

Expand Down
1 change: 1 addition & 0 deletions Database/Document.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { isoly } from "isoly"
import { describe, expect, it } from "vitest"
import { Document } from "./Document"

describe("Database Document", () => {
Expand Down
1 change: 1 addition & 0 deletions Database/Item.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { isoly } from "isoly"
import { describe, expect, it } from "vitest"
import { Item } from "./Item"

describe("Database Document", () => {
Expand Down
1 change: 1 addition & 0 deletions Database/Key.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, expect, it } from "vitest"
import { Key } from "./Key"

describe("Key test", () => {
Expand Down
3 changes: 2 additions & 1 deletion Database/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as storage from "../index"
import { describe, expect, it } from "vitest"
import { storage } from "../index"

interface Item {
value?: number
Expand Down
3 changes: 2 additions & 1 deletion KeyValueStore/Continuable.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as storage from "../index"
import { describe, expect, it } from "vitest"
import { storage } from "../index"

describe("Continuable", () => {
const array = [1, 2, 3, 4, 5, 6, 7, 8, 9]
Expand Down
3 changes: 2 additions & 1 deletion KeyValueStore/InMeta/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as storage from "../../index"
import { describe, expect, it } from "vitest"
import { storage } from "../../index"

describe("KeyValueStore.InMeta", () => {
const joe = { name: "Joe Doe", email: "joe@example.com" }
Expand Down
3 changes: 2 additions & 1 deletion KeyValueStore/Indexed/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as storage from "../../index"
import { describe, expect, it } from "vitest"
import { storage } from "../../index"

interface Type {
name: { first: string; last: string }
Expand Down
3 changes: 2 additions & 1 deletion KeyValueStore/Json/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as storage from "../../index"
import { describe, expect, it } from "vitest"
import { storage } from "../../index"

describe("KeyValueStore.Json", () => {
it("set get list", async () => {
Expand Down
3 changes: 2 additions & 1 deletion KeyValueStore/OnlyMeta/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as storage from "../../index"
import { describe, expect, it } from "vitest"
import { storage } from "../../index"

describe("KeyValueStore.OnlyMeta", () => {
const joe = { name: "Joe Doe", email: "joe@example.com" }
Expand Down
3 changes: 2 additions & 1 deletion KeyValueStore/open/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { isoly } from "isoly"
import * as storage from "../../index"
import { describe, expect, it } from "vitest"
import { storage } from "../../index"

describe("KeyValueStore.open", () => {
it("set get list", async () => {
Expand Down
3 changes: 2 additions & 1 deletion KeyValueStore/range.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as storage from "../index"
import { describe, expect, it } from "vitest"
import { storage } from "../index"
import { ListOptions } from "./ListOptions"

describe("range", () => {
Expand Down
Loading
Loading