fbredius/storybook

View on GitHub
app/angular/src/server/__tests__/create-fork-ts-checker-plugin.test.ts

Summary

Maintainability
A
0 mins
Test Coverage
// import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
// import getTsLoaderOptions from '../ts_config';
// import createForkTsCheckerInstance from '../create-fork-ts-checker-plugin';

// // eslint-disable-next-line global-require, jest/no-mocks-import
// jest.mock('fs', () => require('../../../../../__mocks__/fs'));
// // jest.mock('path', () => ({
// //   resolve: () => 'tsconfig.json',
// //   posix: { dirname: jest.fn(() => '') },
// //   extname: jest.fn(() => ''),
// // }));
// jest.mock('@storybook/node-logger');

// const setupFiles = (files: any) => {
//   // eslint-disable-next-line no-underscore-dangle, global-require
//   require('fs').__setMockFiles(files);
// };

// describe('create-fork-ts-checker-plugin.test', () => {
//   it('should create a ForkTsCheckerWebpackPlugin instance', () => {
//     setupFiles({ 'tsconfig.json': '{}' });

//     const tsLoaderOptions = getTsLoaderOptions('.foo');

//     // todo resolve any
//     const instance: any = createForkTsCheckerInstance(tsLoaderOptions);

//     expect(instance).toBeInstanceOf(ForkTsCheckerWebpackPlugin);
//     expect(instance.tsconfig).toEqual(tsLoaderOptions.configFile);
//   });

//   it('should create a ForkTsCheckerWebpackPlugin instance without passing options', () => {
//     // add proper typing
//     const instance = createForkTsCheckerInstance({} as any);
//     expect(instance).toBeInstanceOf(ForkTsCheckerWebpackPlugin);
//   });
// });

it('work-around', () => {
  expect(true).toBe(true);
});

// Make it work with --isolatedModules, we need a dummy export
/* eslint-disable jest/no-export */
export default {};