summaryrefslogtreecommitdiff
path: root/@linaria/packages/core/__tests__/detect-core-js.test.js
blob: 22bfbe4b4962ae2797f008e50996ea62b78a2a94 (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
import cp from 'child_process';

const waitForProcess = async (process) => {
  return new Promise((resolve) => {
    let output = '';
    process.stdout.on('data', (chunk) => {
      output += chunk.toString();
    });
    process.on('close', () => {
      resolve(output);
    });
  });
};

it('Ensures that package do not include core-js dependency after build', async () => {
  // eslint-disable-next-line import/no-extraneous-dependencies
  const packageJSON = require('@linaria/babel-preset/package.json');
  const buildScript = packageJSON.scripts['build:lib'];

  const proc = cp.exec(buildScript, {
    stdio: 'ignore',
    env: {
      ...process.env,
      DEBUG_CORE_JS: 'true',
    },
  });
  const result = await waitForProcess(proc);
  // run `DEBUG_CORE_JS=true yarn build:lib` to debug issues with introduced core-js dependency
  expect(result).not.toContain(
    'The corejs3 polyfill added the following polyfills'
  );
  expect(result).toContain(
    'Based on your code and targets, the corejs3 polyfill did not add any polyfill'
  );
}, 15000);