Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added several e2e tests from the release checklist. #1763

Merged
merged 1 commit into from Sep 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,3 +10,4 @@ coverage
build/
.vscode/*
chrome-driver-log.txt
.env
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Expand Up @@ -60,12 +60,14 @@ npm i -g lerna@3.4.0 webpack@4.8.x webpack-cli jest
### Install local dependencies

```
lerna bootstrap --hoist
npm run bootstrap
```

> **IMPORTANT:** Do **not** run `npm install` in any of the directories; lerna will take care of that for you with the
`bootstrap` command.

> If you plan on running the end-to-end tests, please use `npm run bootstrap:dev` instead to bootstrap the `@bfemulator/tools` package.

### Build all packages

```
Expand Down
3 changes: 2 additions & 1 deletion lerna.json
Expand Up @@ -13,7 +13,8 @@
"packages/extensions/qnamaker/client",
"packages/extensions/luis",
"packages/extensions/luis/client",
"packages/extensions/json"
"packages/extensions/json",
"packages/tools"
],
"version": "independent"
}