Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily disable unstable app test #40408

Merged
merged 2 commits into from Sep 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions test/e2e/app-dir/index.test.ts
Expand Up @@ -379,7 +379,8 @@ describe('app dir', () => {
}
})

it('should soft replace', async () => {
// TODO-APP: investigate this test
it.skip('should soft replace', async () => {
const browser = await webdriver(next.url, '/link-soft-replace')

try {
Expand Down Expand Up @@ -1338,7 +1339,8 @@ describe('app dir', () => {
expect(await browser.elementByCss('h1').text()).toBe('Template 0')
})

it('should render the template that is a server component and rerender on navigation', async () => {
// TODO-APP: disable failing test and investigate later
it.skip('should render the template that is a server component and rerender on navigation', async () => {
const browser = await webdriver(next.url, '/template/servercomponent')
expect(await browser.elementByCss('h1').text()).toStartWith('Template')

Expand Down