[examples][tests] Update fixture test names to be concretely named (#10752)

This commit is contained in:
Trek Glowacki
2023-10-24 12:44:53 -05:00
committed by GitHub
parent f8320417a8
commit a732b64c02
45 changed files with 90 additions and 131 deletions

View File

@@ -0,0 +1,2 @@
---
---

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy angular', async () => {
await deployExample(__filename); await deployExample('angular');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy astro', async () => {
await deployExample(__filename); await deployExample('astro');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy blitzjs', async () => {
await deployExample(__filename); await deployExample('blitzjs');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy brunch', async () => {
await deployExample(__filename); await deployExample('brunch');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy create-react-app', async () => {
await deployExample(__filename); await deployExample('create-react-app');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy docusaurus-2', async () => {
await deployExample(__filename); await deployExample('docusaurus-2');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy docusaurus', async () => {
await deployExample(__filename); await deployExample('docusaurus');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy dojo', async () => {
await deployExample(__filename); await deployExample('dojo');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy eleventy', async () => {
await deployExample(__filename); await deployExample('eleventy');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy ember', async () => {
await deployExample(__filename); await deployExample('ember');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy gatsby', async () => {
await deployExample(__filename); await deployExample('gatsby');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy gridsome', async () => {
await deployExample(__filename); await deployExample('gridsome');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy hexo', async () => {
await deployExample(__filename); await deployExample('hexo');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy hugo', async () => {
await deployExample(__filename); await deployExample('hugo');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy hydrogen-2', async () => {
await deployExample(__filename); await deployExample('hydrogen-2');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy hydrogen', async () => {
await deployExample(__filename); await deployExample('hydrogen');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy ionic-angular', async () => {
await deployExample(__filename); await deployExample('ionic-angular');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy ionic-react', async () => {
await deployExample(__filename); await deployExample('ionic-react');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy jekyll', async () => {
await deployExample(__filename); await deployExample('jekyll');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy middleman', async () => {
await deployExample(__filename); await deployExample('middleman');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy nextjs', async () => {
await deployExample(__filename); await deployExample('nextjs');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy node_modules', async () => {
await deployExample(__filename); await deployExample('node_modules');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy nuxtjs', async () => {
await deployExample(__filename); await deployExample('nuxtjs');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy parcel', async () => {
await deployExample(__filename); await deployExample('parcel');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy polymer', async () => {
await deployExample(__filename); await deployExample('polymer');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy preact', async () => {
await deployExample(__filename); await deployExample('preact');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy redwoodjs', async () => {
await deployExample(__filename); await deployExample('redwoodjs');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy remix', async () => {
await deployExample(__filename); await deployExample('remix');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy saber', async () => {
await deployExample(__filename); await deployExample('saber');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy sanity', async () => {
await deployExample(__filename); await deployExample('sanity');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy sapper', async () => {
await deployExample(__filename); await deployExample('sapper');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy scully', async () => {
await deployExample(__filename); await deployExample('scully');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy solidstart', async () => {
await deployExample(__filename); await deployExample('solidstart');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy stencil', async () => {
await deployExample(__filename); await deployExample('stencil');
}); });

View File

@@ -1,4 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy storybook', async () => {
await deployExample(__filename); await deployExample('storybook');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy svelte', async () => {
await deployExample(__filename); await deployExample('svelte');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy sveltekit-1', async () => {
await deployExample(__filename); await deployExample('sveltekit-1');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy sveltekit', async () => {
await deployExample(__filename); await deployExample('sveltekit');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy umijs', async () => {
await deployExample(__filename); await deployExample('umijs');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy vite', async () => {
await deployExample(__filename); await deployExample('vite');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy vitepress', async () => {
await deployExample(__filename); await deployExample('vitepress');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy vue', async () => {
await deployExample(__filename); await deployExample('vue');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy vuepress', async () => {
await deployExample(__filename); await deployExample('vuepress');
}); });

View File

@@ -1,5 +1,4 @@
import { deployExample } from '../test-utils'; import { deployExample } from '../test-utils';
it('should deploy', async () => { it('[examples] should deploy zola', async () => {
await deployExample(__filename); await deployExample('zola');
}); });