File size: 1,127 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
import { nextTestSetup } from 'e2e-utils'
import { shouldRunTurboDevTest } from 'next-test-utils'

describe('experimental-https-server OpenGraph image', () => {
  const { next, skipped } = nextTestSetup({
    files: __dirname,
    startCommand: `pnpm next ${
      shouldRunTurboDevTest() ? 'dev --turbo' : 'dev'
    } --experimental-https`,
    skipStart: !process.env.NEXT_TEST_CI,
  })
  if (skipped) return

  if (!process.env.NEXT_TEST_CI) {
    console.warn('only runs on CI as it requires administrator privileges')
    it('only runs on CI as it requires administrator privileges', () => {})
    return
  }

  it('should generate https:// URLs for OpenGraph images when experimental HTTPS is enabled', async () => {
    expect(next.url).toContain('https://')
    const browser = await next.browser('/1', {
      ignoreHTTPSErrors: true,
    })
    const html = await browser.eval('document.documentElement.innerHTML')
    expect(html).toContain('Hello from App')
    expect(html).toMatch(/<meta property="og:image" content="https:\/\//)
    expect(html).toMatch(/<meta name="twitter:image" content="https:\/\//)
  })
})