diff --git a/packages/playground/blueprints/src/lib/steps/site-data.spec.ts b/packages/playground/blueprints/src/lib/steps/site-data.spec.ts index bcabec8a38..a4d64b884d 100644 --- a/packages/playground/blueprints/src/lib/steps/site-data.spec.ts +++ b/packages/playground/blueprints/src/lib/steps/site-data.spec.ts @@ -7,31 +7,30 @@ import { setSiteOptions } from './site-data'; import { unzip } from './unzip'; describe('Blueprint step setSiteOptions()', () => { - let php: NodePHP; - beforeEach(async () => { - php = await NodePHP.load(RecommendedPHPVersion, { - requestHandler: { - documentRoot: '/wordpress', - }, - }); - await unzip(php, { - zipFile: await getWordPressModule(), - extractToPath: '/wordpress', - }); - }); - - it('should set the site option', async () => { - await setSiteOptions(php, { - options: { - blogname: 'My test site!', - }, - }); - const response = await php.run({ - code: ` { + // php = await NodePHP.load(RecommendedPHPVersion, { + // requestHandler: { + // documentRoot: '/wordpress', + // }, + // }); + // await unzip(php, { + // zipFile: await getWordPressModule(), + // extractToPath: '/wordpress', + // }); + // }); + // it('should set the site option', async () => { + // await setSiteOptions(php, { + // options: { + // blogname: 'My test site!', + // }, + // }); + // const response = await php.run({ + // code: `