From 6a2acc7d5a5a8aadd6d7bc8fa2fff6c7b25b03c4 Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Mon, 18 Nov 2024 01:54:29 +0900 Subject: [PATCH] fix: update Octokit import in test file Replaced `@octokit/core` with `@octokit/rest` in rewards.test.ts. --- tests/rewards.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rewards.test.ts b/tests/rewards.test.ts index abb47811..d7cd5ce9 100644 --- a/tests/rewards.test.ts +++ b/tests/rewards.test.ts @@ -2,7 +2,7 @@ import { afterAll, afterEach, beforeAll, beforeEach, describe, it, jest } from "@jest/globals"; import { drop } from "@mswjs/data"; -import { Octokit } from "@octokit/core"; +import { Octokit } from "@octokit/rest"; import { Logs } from "@ubiquity-os/ubiquity-os-logger"; import fs from "fs"; import { http, passthrough } from "msw";