@@ -33,7 +33,7 @@ describe('qwikNxVite plugin e2e', () => {
3333 const libProject = uniq ( 'qwik-nx' ) ;
3434 const secondLibProject = uniq ( 'qwik-nx' ) ;
3535
36- describe ( 'Applying storybook for existing application' , ( ) => {
36+ fdescribe ( 'Applying storybook for existing application' , ( ) => {
3737 beforeAll ( async ( ) => {
3838 await runNxCommandAsync (
3939 `generate qwik-nx:app --directory=apps/${ appProject } --e2eTestRunner=none --no-interactive`
@@ -43,9 +43,13 @@ describe('qwikNxVite plugin e2e', () => {
4343 ) ;
4444 await addAdditionalStories ( appProject ) ;
4545 } , DEFAULT_E2E_TIMEOUT ) ;
46+ // it('Test', () => {
47+ // expect('meow').toBeTruthy();
48+ // });
49+
4650 checkStorybookIsBuiltAndServed ( appProject ) ;
4751 } ) ;
48- describe ( 'Applying storybook for existing library' , ( ) => {
52+ xdescribe ( 'Applying storybook for existing library' , ( ) => {
4953 beforeAll ( async ( ) => {
5054 await runNxCommandAsync (
5155 `generate qwik-nx:library --directory=libs/${ libProject } --no-interactive`
@@ -58,7 +62,7 @@ describe('qwikNxVite plugin e2e', () => {
5862 checkStorybookIsBuiltAndServed ( libProject ) ;
5963 } ) ;
6064
61- describe ( 'Generating a new library with storybook configuration' , ( ) => {
65+ xdescribe ( 'Generating a new library with storybook configuration' , ( ) => {
6266 beforeAll ( async ( ) => {
6367 await runNxCommandAsync (
6468 `generate qwik-nx:library --directory=libs/${ secondLibProject } --storybookConfiguration=true --no-interactive`
0 commit comments