Skip to content

Commit

Permalink
Fix config file
Browse files Browse the repository at this point in the history
  • Loading branch information
suyash-naithani committed Feb 13, 2024
1 parent fb20f6c commit 6f73509
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions ui/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ module.exports = {
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
setupFilesAfterEnv: ['./jest.setup.ts']
};
File renamed without changes.
2 changes: 1 addition & 1 deletion ui/tests/playwright/BrokerPropertyPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Brokers property page", () => {
test("Brokers property page should display table", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/BrokersPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Brokers page", () => {
test("Brokers page should display table", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/ClusterOverview.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Cluster Overview page", () => {
test("Cluster overview page should display correctly", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/ConsumerGroupsPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Consumer groups page", () => {
test("Consumer groups page should display table", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/ConsumerPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Consumer page", () => {
test("Consumer should display table", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/CreateTopicPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Create Topic", () => {
test("Create Topic form should appear", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/HomePage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Home page", () => {
test("Column headings are present", async () => {
const columnHeadings = await page.$$eval(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/MessagesPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Messages page", () => {
test("Messages page should display table", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/PartitionsPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Partitions page", () => {
test("Partitions page should display table", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/TopicConfigurationPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Topic Configuration", () => {
test("Topic Configuration form should appear", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/TopicConsumers.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Topic Consumers", () => {
test("Topic Consumers page should display table", async () => {
await page.goto(
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/playwright/TopicsPage.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { page } from "./setup";
import { page } from "../../jest.setup";
describe("Topics page", () => {
test("Topics page should display table", async () => {
await page.goto(
Expand Down

0 comments on commit 6f73509

Please sign in to comment.