Skip to content

Commit

Permalink
test: enable integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tamtamchik committed Sep 25, 2024
1 parent 898ffdb commit 15ce3a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/integration/accounting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const SIMPLE_DVT_MODULE_ID = 2n;

const ZERO_HASH = new Uint8Array(32).fill(0);

describe.skip("Accounting integration", () => {
describe("Accounting integration", () => {
let ctx: ProtocolContext;

let ethHolder: HardhatEthersSigner;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/burn-shares.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { finalizeWithdrawalQueue, handleOracleReport } from "lib/protocol/helper

import { bailOnFailure, Snapshot } from "test/suite";

describe.skip("Burn Shares", () => {
describe("Burn Shares", () => {
let ctx: ProtocolContext;
let snapshot: string;

Expand Down
2 changes: 1 addition & 1 deletion test/integration/protocol-happy-path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const SIMPLE_DVT_MODULE_ID = 2n;

const ZERO_HASH = new Uint8Array(32).fill(0);

describe.skip("Happy Path", () => {
describe("Happy Path", () => {
let ctx: ProtocolContext;
let snapshot: string;

Expand Down

0 comments on commit 15ce3a4

Please sign in to comment.