Skip to content

Commit

Permalink
Merge pull request #466 from BitBagCommerce/feature/update-docs
Browse files Browse the repository at this point in the history
Update testing plugin docs
  • Loading branch information
senghe authored Jan 31, 2023
2 parents f94920a + 3ace7a3 commit dac91b1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,20 @@ Any other approach, that will allow cms pages to read this value in js, under "r
```bash
$ composer install
$ cd tests/Application
```
Copy file `package.json.~1.XX.0.dist` to `package.json` where `~1.XX.0` is the Sylius version you are using.

```bash
$ cp package.json.~1.12.0.dist package.json
```

```bash
$ yarn install
$ yarn run gulp
$ bin/console assets:install public -e test
$ bin/console doctrine:schema:create -e test
$ bin/console server:run 127.0.0.1:8080 -d public -e test
$ yarn encore dev
$ APP_ENV=test bin/console assets:install
$ APP_ENV=test bin/console doctrine:schema:create
$ APP_ENV=test symfony server:start --port=8080 -d
$ cd ../..
$ open http://localhost:8080
$ vendor/bin/behat
$ vendor/bin/phpspec run
Expand Down

0 comments on commit dac91b1

Please sign in to comment.