From 19f7523a4590fd41792d22d662bd6f5cf2bfead0 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 27 Jul 2021 17:44:40 +0200 Subject: Made the unit test structure more consistent --- test/unit/blob.unit.test.ts | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'test/unit/blob.unit.test.ts') diff --git a/test/unit/blob.unit.test.ts b/test/unit/blob.unit.test.ts index efb7071..1771255 100644 --- a/test/unit/blob.unit.test.ts +++ b/test/unit/blob.unit.test.ts @@ -6,17 +6,19 @@ import { Blob } from "../../packages/server/src/git/blob"; const env = process.env as EnvironmentVariables; describe("Blob", () => { - it("Should the get a blob from a path in a tree", async() => { - expect.assertions(2); + describe("Class methods", () => { + it("Should the get a blob from a path in a tree", async() => { + expect.assertions(2); - const tree = await Tree.ofRepository(await Repository.open(env.BASE_DIR, env.AVAIL_REPO)); - const blob = await Blob.fromPath(tree, "packages/client/src/main.ts"); + const tree = await Tree.ofRepository(await Repository.open(env.BASE_DIR, env.AVAIL_REPO)); + const blob = await Blob.fromPath(tree, "packages/client/src/main.ts"); - expect(blob).toBeDefined(); - expect(blob).toBeInstanceOf(Blob); + expect(blob).toBeDefined(); + expect(blob).toBeInstanceOf(Blob); + }); }); - describe("Methods", () => { + describe("Instance methods", () => { let blob: Blob; beforeAll(async() => { -- cgit v1.2.3-18-g5258