mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
Fix lint errors
This commit is contained in:
parent
caaf5d5857
commit
36a99faa8a
@ -1,5 +1,7 @@
|
||||
import { Path } from '@angular-devkit/core';
|
||||
import { getAngularCliWebpackConfigOptions } from '../angular-cli_config';
|
||||
import angularJson from './angular.json';
|
||||
|
||||
const angularJson = require('./angular.json');
|
||||
|
||||
// eslint-disable-next-line global-require
|
||||
jest.mock('fs', () => require('../../../../../__mocks__/fs'));
|
||||
@ -8,7 +10,7 @@ jest.mock('path', () => ({
|
||||
resolve: () => 'tsconfig.json',
|
||||
}));
|
||||
|
||||
const setupFiles = files => {
|
||||
const setupFiles = (files: any) => {
|
||||
// eslint-disable-next-line no-underscore-dangle, global-require
|
||||
require('fs').__setMockFiles(files);
|
||||
};
|
||||
@ -18,7 +20,7 @@ describe('angualr-cli_config', () => {
|
||||
it('should return have empty `buildOptions.sourceMap` and `buildOptions.optimization` by default', () => {
|
||||
setupFiles({ 'angular.json': JSON.stringify(angularJson) });
|
||||
|
||||
const config = getAngularCliWebpackConfigOptions('/');
|
||||
const config = getAngularCliWebpackConfigOptions('/' as Path);
|
||||
|
||||
expect(config).toMatchObject({
|
||||
buildOptions: {
|
||||
@ -45,7 +47,7 @@ describe('angualr-cli_config', () => {
|
||||
|
||||
setupFiles({ 'angular.json': JSON.stringify(overrideAngularJson) });
|
||||
|
||||
const config = getAngularCliWebpackConfigOptions('/');
|
||||
const config = getAngularCliWebpackConfigOptions('/' as Path);
|
||||
|
||||
// Assure configuration matches values from `storybook` project
|
||||
expect(config).toMatchObject({
|
||||
|
Loading…
x
Reference in New Issue
Block a user