Skip to content

Commit 0cd9db7

Browse files
authored
Bump dev dependencies (#2182)
* Bump dev dependencies * Bump headless Chrome Docker image * Bump @babel/[email protected] and [email protected] * Add entry * Add entry * Update PR number * Fix thumbnails for updated Chrome Docker image * Fix test warnings * Update snapshots * Bump versions * Move to babel-transform-inline-environment-variables * Add entry * Credit * Add core-js as devDependencies * Fix connectSaga test * Remove prettierignore
1 parent 222cef9 commit 0cd9db7

31 files changed

Lines changed: 6531 additions & 11477 deletions

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2222

2323
## [Unreleased]
2424

25+
### Changed
26+
- `*`: Bumps all dev dependencies to latest version, by [@compulim](https://github.com/compulim), in PR [#2182](https://github.com/microsoft/BotFramework-WebChat/pull/2182), notably
27+
- [`@babel/*@7.5.4`](https://www.npmjs.com/package/@babel/core)
28+
- [`[email protected]`](https://www.npmjs.com/package/jest)
29+
- [`[email protected]`](https://www.npmjs.com/package/lerna)
30+
- [`[email protected]`](https://www.npmjs.com/package/typescript)
31+
- [`[email protected]`](https://www.npmjs.com/package/webpack)
32+
- `*`: Bumps [`@babel/[email protected]`](https://www.npmjs.com/package/@babel/runtime), by [@compulim](https://github.com/compulim), in PR [#2182](https://github.com/microsoft/BotFramework-WebChat/pull/2182)
33+
- `*`: Bumps Docker container for headless Chrome to `selenium/standalone-chrome:3.141.59-radium`, by [@compulim](https://github.com/compulim), in PR [#2182](https://github.com/microsoft/BotFramework-WebChat/pull/2182)
34+
- `*`: Moves from [`babel-plugin-version-transform`](https://www.npmjs.com/package/babel-plugin-version-transform) to [`babel-plugin-transform-inline-environment-variables`](https://www.npmjs.com/package/babel-plugin-transform-inline-environment-variables), by [@compulim](https://github.com/compulim), in PR [#2182](https://github.com/microsoft/BotFramework-WebChat/pull/2182)
35+
2536
## [4.5.0] - 2019-07-10
2637

2738
### Added
Loading
Loading
-6.42 KB
Loading
-4.99 KB
Loading
-6.51 KB
Loading
-4.68 KB
Loading
-7.89 KB
Loading

__tests__/inputHint.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import uiConnected from './setup/conditions/uiConnected';
1111
jest.setTimeout(timeouts.test);
1212

1313
describe('input hint', () => {
14-
describe('of expectingInput', async () => {
14+
describe('of expectingInput', () => {
1515
test('should turn on microphone if initiated via microphone', async () => {
1616
const { driver, pageObjects } = await setupWebDriver({
1717
props: {
@@ -49,7 +49,7 @@ describe('input hint', () => {
4949
});
5050
});
5151

52-
describe('of acceptingInput', async () => {
52+
describe('of acceptingInput', () => {
5353
test('should not turn on microphone if initiated via microphone', async () => {
5454
const { driver, pageObjects } = await setupWebDriver({
5555
props: {
@@ -87,7 +87,7 @@ describe('input hint', () => {
8787
});
8888
});
8989

90-
describe('of ignoringInput', async () => {
90+
describe('of ignoringInput', () => {
9191
test('should turn off microphone if initiated via microphone', async () => {
9292
const { driver, pageObjects } = await setupWebDriver({
9393
props: {
@@ -125,7 +125,7 @@ describe('input hint', () => {
125125
});
126126
});
127127

128-
describe('of undefined', async () => {
128+
describe('of undefined', () => {
129129
test('should not turn on microphone if initiated via microphone', async () => {
130130
const { driver, pageObjects } = await setupWebDriver({
131131
props: {

__tests__/offlineUI.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const allOutgoingMessagesFailed = new Condition('All outgoing messages to fail s
2222
});
2323
});
2424

25-
describe('offline UI', async () => {
25+
describe('offline UI', () => {
2626
test('should show "Taking longer than usual to connect" UI when connection is slow', async () => {
2727
const { driver } = await setupWebDriver({
2828
createDirectLine: options => {

0 commit comments

Comments
 (0)