Skip to content

Commit 07edf68

Browse files
committed
Log test names
1 parent 092047b commit 07edf68

16 files changed

+32
-0
lines changed

src/tests/e2e/tests/css-modules-with-sass/css-modules-with-sass-all-flags.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testCssModulesWithSassAllFlags = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testCssModulesWithSassAllFlags.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/css-modules-with-sass/css-modules-with-sass-only.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testCssModulesWithSassOnly = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testCssModulesWithSassOnly.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/css-modules/css-modules-all-flags.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testCssModulesAllFlags = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testCssModulesAllFlags.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/css-modules/css-modules-only.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testCssModulesOnly = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testCssModulesOnly.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/emotion/emotion-all-flags.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testEmotionAllFlags = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testEmotionAllFlags.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/emotion/emotion-only.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testEmotionOnly = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testEmotionOnly.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/styled-components/styled-components-all-flags.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testStyledComponentsAllFlags = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testStyledComponentsAllFlags.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/styled-components/styled-components-only.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testStyledComponentsOnly = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testStyledComponentsOnly.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/tailwind-css/tailwind-css-all-flags.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testTailwindCssAllFlags = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testTailwindCssAllFlags.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

src/tests/e2e/tests/tailwind-css/tailwind-css-only.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { logTestInfo } from "../../test-logging"
88
export const testTailwindCssOnly = async (
99
createNextStackDir: string
1010
): Promise<void> => {
11+
logTestInfo(`Running test: ${testTailwindCssOnly.name}`)
12+
1113
const { pathToProdCLI, runDirectory } = await prepareE2eTest(
1214
createNextStackDir
1315
)

0 commit comments

Comments
 (0)