Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannes Bornö committed Oct 23, 2022
1 parent 5197b0e commit 9249fe5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/e2e/app-dir/index.test.ts
Expand Up @@ -30,6 +30,7 @@ describe('app dir', () => {
dependencies: {
react: 'experimental',
'react-dom': 'experimental',
sass: 'latest',
},
skipStart: true,
})
Expand Down Expand Up @@ -1445,7 +1446,7 @@ describe('app dir', () => {

describe('client layouts', () => {
it('should support global sass/scss inside client layouts', async () => {
const browser = await webdriver(next.url, '/css/sass/inner')
const browser = await webdriver(next.url, '/css/sass-client/inner')
// .sass
expect(
await browser.eval(
Expand All @@ -1461,7 +1462,7 @@ describe('app dir', () => {
})

it('should support sass/scss modules inside client layouts', async () => {
const browser = await webdriver(next.url, '/css/sass/inner')
const browser = await webdriver(next.url, '/css/sass-client/inner')
// .sass
expect(
await browser.eval(
Expand Down

0 comments on commit 9249fe5

Please sign in to comment.