chore: reenable all tests

This commit is contained in:
Thomas Allmer
2021-09-13 14:38:11 +02:00
parent 509a8d9115
commit de202da0a5
3 changed files with 3 additions and 9 deletions

View File

@@ -19,7 +19,7 @@ describe('RocketCli preset', () => {
}
});
it.only('offers a default layout (with head, header, content, footer, bottom) and raw layout', async () => {
it('offers a default layout (with head, header, content, footer, bottom) and raw layout', async () => {
cli = await executeStart('preset-fixtures/default/rocket.config.js');
const rawHtml = await readStartOutput(cli, 'raw/index.html');

View File

@@ -31,7 +31,7 @@ describe('RocketCli e2e', () => {
}
});
it.only('will add a script to inject the service worker', async () => {
it('will add a script to inject the service worker', async () => {
cli = await executeBuild('e2e-fixtures/service-worker/rocket.config.js');
const indexHtml = await readStartOutput(cli, 'index.html');
const indexInject = getInjectServiceWorker(indexHtml);

View File

@@ -19,7 +19,7 @@ describe('RocketLaunch preset', () => {
}
});
it.only('sets layout-sidebar as default', async () => {
it('sets layout-sidebar as default', async () => {
cli = await executeStart('fixtures/layout-sidebar/rocket.config.js');
const indexHtml = await readStartOutput(cli, 'page/index.html', {
@@ -502,12 +502,6 @@ describe('RocketLaunch preset', () => {
' </footer>',
'',
' <script type="module" src="/_merged_assets/scripts/init-navigation.js"></script>',
'',
' <script',
' type="module"',
' inject-service-worker=""',
' src="/_merged_assets/scripts/registerServiceWorker.js"',
' ></script>',
' </body>',
'</html>',
].join('\n'),