Fix linting errors

This commit is contained in:
Michael Shilman 2022-05-02 17:33:34 +08:00
parent c2778c2e30
commit cc16a33bef
2 changed files with 6 additions and 6 deletions

View File

@ -140,7 +140,7 @@ export async function buildStaticStandalone(options: CLIOptions & LoadOptions &
});
}
if (!core.disableProjectJson) {
if (!core?.disableProjectJson) {
extractTasks.push(
extractStorybookMetadata(path.join(options.outputDir, 'project.json'), options.configDir)
);

View File

@ -64,7 +64,7 @@ describe('useStoriesJson', () => {
describe('JSON endpoint', () => {
it('scans and extracts stories', async () => {
const mockServerChannel = { emit: jest.fn() } as any as ServerChannel;
await useStoriesJson({
useStoriesJson({
router,
serverChannel: mockServerChannel,
workingDir,
@ -168,7 +168,7 @@ describe('useStoriesJson', () => {
it('can handle simultaneous access', async () => {
const mockServerChannel = { emit: jest.fn() } as any as ServerChannel;
await useStoriesJson({
useStoriesJson({
router,
serverChannel: mockServerChannel,
workingDir,
@ -200,7 +200,7 @@ describe('useStoriesJson', () => {
it('sends invalidate events', async () => {
const mockServerChannel = { emit: jest.fn() } as any as ServerChannel;
await useStoriesJson({
useStoriesJson({
router,
serverChannel: mockServerChannel,
workingDir,
@ -229,7 +229,7 @@ describe('useStoriesJson', () => {
it('only sends one invalidation when multiple event listeners are listening', async () => {
const mockServerChannel = { emit: jest.fn() } as any as ServerChannel;
await useStoriesJson({
useStoriesJson({
router,
serverChannel: mockServerChannel,
workingDir,
@ -264,7 +264,7 @@ describe('useStoriesJson', () => {
(debounce as jest.Mock).mockImplementation(jest.requireActual('lodash/debounce'));
const mockServerChannel = { emit: jest.fn() } as any as ServerChannel;
await useStoriesJson({
useStoriesJson({
router,
serverChannel: mockServerChannel,
workingDir,