Skip to content

Commit

Permalink
Merge branch 'develop' into new-delegate-factory
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler17 committed Sep 26, 2024
2 parents e09c688 + d70b7fd commit 2905d6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
include:
- test: executives.spec
- test: delegates.spec
- test: esmodule.spec
# - test: esmodule.spec
- test: polling.spec
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion playwright/esmodule.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test';
import { connectWallet, closeModal } from './shared';
import './forkVnet';

test('Input 150,000MKR and burn it', async ({ page }) => {
test.skip('Input 150,000MKR and burn it', async ({ page }) => {
await page.goto('/esmodule');

await expect(page.locator('text=Emergency Shutdown Module')).toBeVisible();
Expand Down
4 changes: 2 additions & 2 deletions playwright/forkVnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test.afterAll(async () => {
export const setEthBalance = async (address: string, amount: string) => {
const file = await readFile('./tenderlyTestnetData.json', 'utf-8');
const { TENDERLY_RPC_URL } = JSON.parse(file);

const hexAmount = hexlify(parseEther(amount)).replace(/^0x0/, '0x');
const response = await fetch(TENDERLY_RPC_URL, {
method: 'POST',
headers: {
Expand All @@ -36,7 +36,7 @@ export const setEthBalance = async (address: string, amount: string) => {
},
body: JSON.stringify({
method: 'tenderly_setBalance',
params: [[address], hexlify(parseEther(amount))],
params: [[address], hexAmount],
id: 42,
jsonrpc: '2.0'
})
Expand Down

0 comments on commit 2905d6b

Please sign in to comment.