Skip to content

Commit

Permalink
[SDK] test: Skip Nebula AI tests by default (#5961)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquim-verges authored Jan 15, 2025
1 parent c290997 commit 51a28c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/thirdweb/src/ai/chat.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { TEST_ACCOUNT_A, TEST_ACCOUNT_B } from "../../test/src/test-wallets.js";
import { sepolia } from "../chains/chain-definitions/sepolia.js";
import * as Nebula from "./index.js";

describe.runIf(process.env.TW_SECRET_KEY)("chat", () => {
// reenable manually for nebula testing
describe.runIf(process.env.TW_SECRET_KEY).skip("chat", () => {
it("should respond with a message", async () => {
const response = await Nebula.chat({
client: TEST_CLIENT,
Expand Down
3 changes: 2 additions & 1 deletion packages/thirdweb/src/ai/execute.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { sepolia } from "../chains/chain-definitions/sepolia.js";
import { getContract } from "../contract/contract.js";
import * as Nebula from "./index.js";

describe("execute", () => {
// reenable manually for nebula testing
describe.runIf(process.env.TW_SECRET_KEY).skip("execute", () => {
it("should execute a tx", async () => {
await expect(
Nebula.execute({
Expand Down

0 comments on commit 51a28c4

Please sign in to comment.