Skip to content

Commit 51a28c4

Browse files
[SDK] test: Skip Nebula AI tests by default (#5961)
1 parent c290997 commit 51a28c4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/thirdweb/src/ai/chat.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { TEST_ACCOUNT_A, TEST_ACCOUNT_B } from "../../test/src/test-wallets.js";
44
import { sepolia } from "../chains/chain-definitions/sepolia.js";
55
import * as Nebula from "./index.js";
66

7-
describe.runIf(process.env.TW_SECRET_KEY)("chat", () => {
7+
// reenable manually for nebula testing
8+
describe.runIf(process.env.TW_SECRET_KEY).skip("chat", () => {
89
it("should respond with a message", async () => {
910
const response = await Nebula.chat({
1011
client: TEST_CLIENT,

packages/thirdweb/src/ai/execute.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { sepolia } from "../chains/chain-definitions/sepolia.js";
55
import { getContract } from "../contract/contract.js";
66
import * as Nebula from "./index.js";
77

8-
describe("execute", () => {
8+
// reenable manually for nebula testing
9+
describe.runIf(process.env.TW_SECRET_KEY).skip("execute", () => {
910
it("should execute a tx", async () => {
1011
await expect(
1112
Nebula.execute({

0 commit comments

Comments
 (0)