File size: 1,423 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { nextTestSetup } from 'e2e-utils'

describe('app-dir alias', () => {
  const { next, isNextStart, skipped } = nextTestSetup({
    files: __dirname,
    skipDeployment: true,
  })

  if (skipped) {
    return
  }

  it('should handle typescript paths alias correctly', async () => {
    const html = await next.render('/button')
    expect(html).toContain('click</button>')
  })

  it('should resolve css imports from outside with src folder presented', async () => {
    const browser = await next.browser('/button')
    const fontSize = await browser
      .elementByCss('button')
      .getComputedCss('font-size')
    expect(fontSize).toBe('50px')
  })

  if (isNextStart) {
    it('should not contain installed react/react-dom version in client chunks', async () => {
      const appBuildManifest = await next.readJSON(
        '.next/app-build-manifest.json'
      )
      Object.keys(appBuildManifest.pages).forEach((page) => {
        const containFrameworkChunk = appBuildManifest.pages[page].some(
          (chunk) => {
            return chunk.includes('framework')
          }
        )
        expect(containFrameworkChunk).toBe(false)
      })
    })

    it('should generate app-build-manifest correctly', async () => {
      // Remove other page CSS files:
      const manifest = await next.readJSON('.next/app-build-manifest.json')

      expect(manifest.pages).not.toBeEmptyObject()
    })
  }
})