-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip miniflare integration tests until testing is supported in Minifl…
…are 3 cloudflare/workers-sdk#4490
- Loading branch information
Showing
2 changed files
with
5 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ describe('Starter app', () => { | |
await worker.stop(); | ||
}); | ||
|
||
it('loads the index', async () => { | ||
test.skip('loads the index', async () => { | ||
const response = await worker.fetch('/'); | ||
|
||
expect(response.status).toEqual(200) | ||
|
@@ -22,7 +22,7 @@ describe('Starter app', () => { | |
expect(text).toContain('log in'); | ||
}); | ||
|
||
it('loads the dashboard', async () => { | ||
test.skip('loads the dashboard', async () => { | ||
const response = await worker.fetch('/dashboard', { | ||
headers: { | ||
'starter-proxied': 'true', | ||
|
@@ -36,7 +36,7 @@ describe('Starter app', () => { | |
expect(text).toContain('Welcome, [email protected]!'); | ||
}); | ||
|
||
it('blocks requests to the dashboard without a proxied header', async () => { | ||
test.skip('blocks requests to the dashboard without a proxied header', async () => { | ||
const response = await worker.fetch('/dashboard'); | ||
|
||
expect(response.status).toEqual(403) | ||
|