Skip to content

Commit

Permalink
removed testing cases
Browse files Browse the repository at this point in the history
  • Loading branch information
devlancer412 committed Jun 10, 2024
1 parent 451f994 commit 135139e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/v2/core/wsgETH.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const {expect} = require("chai");
const {parseEther, formatEther} = require("ethers/lib/utils");
const {time} = require("@nomicfoundation/hardhat-network-helpers");

describe.only("WsgETH.sol", () => {
describe("WsgETH.sol", () => {
let sgEth, wsgEth, deployer, alice, multiSig;
let MINTER_ROLE;

Expand Down Expand Up @@ -85,7 +85,7 @@ describe.only("WsgETH.sol", () => {
it("depositWithSignature", async () => {
await sgEth.transfer(alice.address, parseEther("1"));
const nonce = await sgEth.nonces(alice.address);
const deadline = Math.floor(Date.now() / 1000) + 1000;
const deadline = Math.floor(Date.now() / 1000) + 1000000;
const approveData = {
owner: alice.address,
spender: wsgEth.address,
Expand Down

0 comments on commit 135139e

Please sign in to comment.