Skip to content

Commit

Permalink
Temporarily skipped other system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszslabon committed Jul 18, 2023
1 parent f7c7534 commit d215d83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions system-tests/test/deposit-redemption.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe("System Test - Deposit and redemption", () => {
// subsequent Electrum retry attempts.
const ELECTRUM_RETRY_BACKOFF_STEP_MS = 10000 // 10sec
// Multiplier to convert satoshi to TBTC token units.
const SATOSHI_MULTIPLIER: BigNumber = BigNumber.from("10000000000")
const SATOSHI_MULTIPLIER = BigNumber.from(10000000000)

let deposit: Deposit
let depositUtxo: UnspentTransactionOutput
Expand Down Expand Up @@ -124,7 +124,8 @@ describe("System Test - Deposit and redemption", () => {
)
})

context("when deposit is made and revealed without a vault", () => {
// Skip temporarily
context.skip("when deposit is made and revealed without a vault", () => {
before("make and reveal deposit", async () => {
deposit = generateDeposit(
systemTestsContext.depositor.address,
Expand Down Expand Up @@ -547,7 +548,7 @@ describe("System Test - Deposit and redemption", () => {

const expectedTbtcBalance = balanceInSatoshis.mul(SATOSHI_MULTIPLIER)

const actualBalance = tbtc.balanceOf(
const actualBalance = await tbtc.balanceOf(
systemTestsContext.depositor.address
)

Expand Down
4 changes: 3 additions & 1 deletion system-tests/test/minting-unminting.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ const satoshiMultiplier = 1e10
* - A fresh live wallet (with no main UTXO yet) must be registered in
* the bridge
*/
describe("System Test - Minting and unminting", () => {

// Skip temporarily
describe.skip("System Test - Minting and unminting", () => {
let systemTestsContext: SystemTestsContext
let electrumClient: ElectrumClient
let bridgeAddress: string
Expand Down

0 comments on commit d215d83

Please sign in to comment.