mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
chore: reenable all tests
This commit is contained in:
@@ -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');
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user