diff --git a/README.md b/README.md index 35f4627..25cf9f3 100644 --- a/README.md +++ b/README.md @@ -103,21 +103,28 @@ Visit our website here 👉 https://fflow.dev
### Loading Screen + ### Light and Dark Mode + ### Create Custom Components and Nest HTML elements + -### Edit CSS directly in the App (Feature Coming Soon) +### Edit CSS directly in the App (Currently only on Mac version) + +💫💫 Coming soon to Windows 💫💫 ### Export Working Project + ### Clear canvas to start from scratch + ## Getting Started @@ -141,25 +148,13 @@ Please download the latest release of fflow for [MacOS](https://github.com/oslab - - #### Clone this repo 1. Clone this repo `git clone https://github.com/oslabs-beta/fflow` 2. Install the dependencies `npm install` 3. Copy and run this in your terminal (`./node_modules/.bin/electron-rebuild`) or `.\node_modules\.bin\electron-rebuild.cmd` for Windows 4. Run script for development mode `npm run start` -5. Build the app (automatic) `npm run build` +5. Build the app (automatic) `npm run package` 6. Test the app (after `npm run build` || `yarn run build`) `npm run prod` #### Current issues diff --git a/__tests__/LeftPanel.test.js b/__tests__/LeftPanel.test.js index 266eea8..69f78b2 100644 --- a/__tests__/LeftPanel.test.js +++ b/__tests__/LeftPanel.test.js @@ -1,59 +1,19 @@ import React from 'react'; import { render, screen, fireEvent } from '../src/test-utils.js'; import '@testing-library/jest-dom/extend-expect'; -// import DnD from '../src/components/DnD'; import CompCreator from '../src/components/CompCreator'; import Tree from '../src/components/Tree'; -// import TreeRecursive from '../src/components/TreeRecursive'; -import TreeFile from '../src/components/TreeFile'; describe('Left Panel', () => { - test('renders CompCreator component with input field and add button', () => { - const { getByTestId } = render(React Component
*/}