Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 654 Bytes

File metadata and controls

40 lines (29 loc) · 654 Bytes

Development & Testing

Development Setup

To set up the project for development:

  1. Clone the repository:

    git clone https://github.com/tinsever/google-font-cli.git
    cd google-font-cli
  2. Install dependencies:

    npm install
  3. Link the package locally to test the CLI:

    npm link
    gfcli --help

Testing

We use Vitest for unit testing.

To run the tests:

npm test

To run tests with coverage:

npm run test:coverage

Contributing

Please refer to CONTRIBUTE.md for our coding standards and contribution process.