Skip to content

Commit

Permalink
refactor: renamed chai-blocks to blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
surajair committed Feb 4, 2024
1 parent 5529960 commit 982c77b
Show file tree
Hide file tree
Showing 35 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions jest.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/src/**/*.+(test|spec).+(ts|tsx|js)'],
};
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { defineConfig, devices } from "@playwright/test";
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: "./tests",
testDir: "./e2e_tests",

/* Run tests in files in parallel */
fullyParallel: true,
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ChaiBuilderStudio } from "./studio";
import React from "react";
import "./chai-blocks";
import "./blocks";
import "./data-providers/data.ts";

const Logo: React.FC<any> = () => <h2 className="font-bold text-gray-500">Chai Builder</h2>;
Expand Down
2 changes: 1 addition & 1 deletion src/Render.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { RenderChaiBlocks } from "./render/index.ts";
import "./chai-blocks";
import "./blocks";
import "./data-providers/data.ts";

export function Render() {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "./index.css";
import { Render } from "./Render.tsx";
import { createBrowserRouter, RouterProvider } from "react-router-dom";
import App from "./App.tsx";
import "./chai-blocks";
import "./blocks";

async function enableMocking() {
if (import.meta.env.MODE !== "development") {
Expand Down

0 comments on commit 982c77b

Please sign in to comment.