0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00

[ci] format

This commit is contained in:
Matt Kane 2025-01-02 19:49:55 +00:00 committed by astrobot-houston
parent 579bd93794
commit a6a4a66f10
5 changed files with 3 additions and 5 deletions

View file

@ -23,7 +23,7 @@ test.describe('Astro Actions - Blog', () => {
await page.goto(astro.resolveUrl('/blog/first-post/')); await page.goto(astro.resolveUrl('/blog/first-post/'));
const likeButton = page.getByLabel('Like'); const likeButton = page.getByLabel('Like');
await waitForHydrate(page, likeButton); await waitForHydrate(page, likeButton);
await new Promise(resolve => setTimeout(resolve, 500)) await new Promise((resolve) => setTimeout(resolve, 500));
await expect(likeButton, 'like button starts with 10 likes').toContainText('10'); await expect(likeButton, 'like button starts with 10 likes').toContainText('10');
await likeButton.click(); await likeButton.click();
await expect(likeButton, 'like button should increment likes').toContainText('11'); await expect(likeButton, 'like button should increment likes').toContainText('11');

View file

@ -23,7 +23,7 @@ test.describe('Astro Actions - React 19', () => {
await page.goto(astro.resolveUrl('/blog/first-post/')); await page.goto(astro.resolveUrl('/blog/first-post/'));
const likeButton = page.getByLabel('likes-client'); const likeButton = page.getByLabel('likes-client');
await waitForHydrate(page, likeButton); await waitForHydrate(page, likeButton);
await new Promise(resolve => setTimeout(resolve, 500)) await new Promise((resolve) => setTimeout(resolve, 500));
await expect(likeButton).toBeVisible(); await expect(likeButton).toBeVisible();
await likeButton.click(); await likeButton.click();

View file

@ -20,7 +20,6 @@ import {
getEntryConfigByExtMap, getEntryConfigByExtMap,
getEntryDataAndImages, getEntryDataAndImages,
globalContentConfigObserver, globalContentConfigObserver,
reloadContentConfigObserver,
safeStringify, safeStringify,
} from './utils.js'; } from './utils.js';

View file

@ -134,7 +134,6 @@ export default async function dev(inlineConfig: AstroInlineConfig): Promise<DevS
logger.warn('SKIP_FORMAT', msg.fsStrictWarning()); logger.warn('SKIP_FORMAT', msg.fsStrictWarning());
} }
logger.info(null, green('watching for file changes...')); logger.info(null, green('watching for file changes...'));
return { return {

View file

@ -181,7 +181,7 @@ export async function loadFixture(inlineConfig) {
devServer = await dev(mergeConfig(inlineConfig, extraInlineConfig)); devServer = await dev(mergeConfig(inlineConfig, extraInlineConfig));
config.server.host = parseAddressToHost(devServer.address.address); // update host config.server.host = parseAddressToHost(devServer.address.address); // update host
config.server.port = devServer.address.port; // update port config.server.port = devServer.address.port; // update port
await new Promise(resolve => setTimeout(resolve, 100)) await new Promise((resolve) => setTimeout(resolve, 100));
return devServer; return devServer;
}, },
onNextDataStoreChange: (timeout = 5000) => { onNextDataStoreChange: (timeout = 5000) => {