# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate
# run e2e
yarn test:e2e
jest/playwrightを使用 コードはtest/e2e
- page/index.vue
- page/todos.vue
- フォームにテキスト入力してエンターを押すとリストにtodoを追加
- チェックボックスでdone=打ち消し線がでる
- テストファイル
- query-selectorで基本的な動作はかける
- 重いので基本CIで走らせた方が良さそう
- 改修したページ単位ならローカルでもありかも