[cli][fs-detectors][frameworks] Revert Storybook support (#9890)

This commit is contained in:
Chris Barber
2023-05-02 10:03:28 -05:00
committed by GitHub
parent ac2457494a
commit 678e13af53
75 changed files with 3 additions and 2674 deletions

View File

@@ -392,17 +392,5 @@ describe('DetectorFilesystem', () => {
expect(await detectFramework({ fs, frameworkList })).toBe('hydrogen');
});
it('Detect Storybook via `storybook`', async () => {
const fs = new VirtualFilesystem({
'package.json': JSON.stringify({
dependencies: {
storybook: 'latest',
},
}),
});
expect(await detectFramework({ fs, frameworkList })).toBe('storybook');
});
});
});