Skip to content

Commit

Permalink
Skip opera test (pupeteer) for now
Browse files Browse the repository at this point in the history
  • Loading branch information
louisgv committed Mar 25, 2022
1 parent 69795b7 commit 365506c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/markets/opera.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { expect, test } from "@jest/globals"
import fs from "fs/promises"

import { OperaOptions, deployOpera } from "~index"

test.skip("Opera dry run successful", async () => {
const opt = JSON.parse(await fs.readFile("keys.json", "utf8"))
.chrome as OperaOptions

expect(
await deployOpera({
verbose: true,
dryRun: true,
zip: "test.zip",
...opt
})
).toBeTruthy()
})

0 comments on commit 365506c

Please sign in to comment.