Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 853 Bytes

DEVELOPMENT.md

File metadata and controls

25 lines (17 loc) · 853 Bytes

Building package

Execute the following command from the root folder to build the library. This creates a package in the dist folder.

yarn install # for first-time
yarn add vue --peer # Add vue as peer dependency
yarn build

Running test cases

The designated directory for tests is /tests folder. All tests will be run against the assertion present in the /tests/__snapshot__ folder. To create this file, you need to just run the below command just once. Any update in the tests can be updated to by pressing u while the test environment is running.

Execute the following command from the root folder to start testing.

yarn test:dev

Running sample frontend Vue app

Please refer to the sample app Readme.md for details.

Running sample backend server

Please refer to the sample app Readme.md for details.