summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/installation/src/puppeteer-typescript.spec.ts
blob: fc8ff133fbd94d2c3fadce22b597240820d55849 (plain)
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
/**
 * @license
 * Copyright 2023 Google Inc.
 * SPDX-License-Identifier: Apache-2.0
 */

import {readFile, writeFile} from 'fs/promises';
import {platform} from 'os';
import {join} from 'path';

import {configureSandbox} from './sandbox.js';
import {execFile, readAsset} from './util.js';

// Skipping this test on Windows as windows runners are much slower.
(platform() === 'win32' ? describe.skip : describe)(
  '`puppeteer` with TypeScript',
  () => {
    configureSandbox({
      dependencies: ['@puppeteer/browsers', 'puppeteer-core', 'puppeteer'],
      devDependencies: ['typescript@4.7.4', '@types/node@16.3.3'],
      env: cwd => {
        return {
          PUPPETEER_CACHE_DIR: join(cwd, '.cache', 'puppeteer'),
        };
      },
    });

    it('should work', async function () {
      // Write a Webpack configuration.
      await writeFile(
        join(this.sandbox, 'tsconfig.json'),
        await readAsset('puppeteer', 'tsconfig.json')
      );

      // Write the source code.
      await writeFile(
        join(this.sandbox, 'index.ts'),
        await readAsset('puppeteer', 'basic.ts')
      );

      // Compile.
      await execFile('npx', ['tsc'], {cwd: this.sandbox, shell: true});

      const script = await readFile(join(this.sandbox, 'index.js'), 'utf-8');

      await this.runScript(script, 'cjs');
    });
  }
);