Skip to content

Commit

Permalink
FI-714 feat: add functions waitForRequestToRoute/`waitForResponseTo…
Browse files Browse the repository at this point in the history
…Route`
  • Loading branch information
uid11 committed Dec 13, 2023
1 parent 3fe7406 commit 452b364
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

## [v0.15.17](https://github.com/joomcode/e2ed/tree/v0.15.17) (2023-12-13)

[Full Changelog](https://github.com/joomcode/e2ed/compare/v0.15.16...v0.15.17)

## [v0.15.16](https://github.com/joomcode/e2ed/tree/v0.15.16) (2023-12-13)

[Full Changelog](https://github.com/joomcode/e2ed/compare/v0.15.15...v0.15.16)
[Full Changelog](https://github.com/joomcode/e2ed/compare/v0.15.15...v0.15.17)

- [fix: update minimal version of TypeScript in `package-lock.json`](https://github.com/joomcode/e2ed/commit/e2e384132d95e577a6eafda727ebc8424e62d4ac) ([uid11](https://github.com/uid11))
- [Merge pull request #52 from joomcode/fix/respect-errors-from-doBeforePack-doAfterPack](https://github.com/joomcode/e2ed/commit/c3238464719f2ad50b25a606d427b0327bbb6d37) ([uid11](https://github.com/uid11))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ After the run, a detailed HTML report and a summary lite report in JSON format a
## Adding e2ed to a project

Prerequisites: [node](https://nodejs.org/en/) >=16,
[TypeScript](https://www.typescriptlang.org/) >=4.5.
[TypeScript](https://www.typescriptlang.org/) >=4.8.

All commands below are run from the root directory of the project.

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export {EndE2edReason, ExitCode} from './end';
export {BAD_REQUEST_STATUS_CODE} from './http';
export {LogEventStatus, LogEventType} from './log';
export {EndE2edReason, ExitCode} from './report';
export {
INCLUDE_BODY_AND_HEADERS_IN_RESPONSE_EVENT,
INCLUDE_HEADERS_IN_RESPONSE_EVENT,
Expand Down
2 changes: 1 addition & 1 deletion src/constants/internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
export {EXEC_FILE_OPTIONS} from './childProcess';
/** @internal */
export {ConsoleBackgroundColor} from './color';
export {EndE2edReason, ExitCode} from './end';
export {RunEnvironment} from './environment';
/** @internal */
export {
Expand Down Expand Up @@ -44,7 +45,6 @@ export {
export {DEFAULT_PIXELMATCH_OPTIONS} from './pixelmatch';
/** @internal */
export {RESOLVED_PROMISE} from './promise';
export {EndE2edReason, ExitCode} from './report';
export {
INCLUDE_BODY_AND_HEADERS_IN_RESPONSE_EVENT,
INCLUDE_HEADERS_IN_RESPONSE_EVENT,
Expand Down
2 changes: 1 addition & 1 deletion src/utils/startInfo/getStartInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const getStartInfo = (): StartInfo => {
for (const name of Object.keys(e2edEnvironment).sort()) {
const value = e2edEnvironment[name];

if (name.toUpperCase().startsWith('E2ED')) {
if (name.toUpperCase().includes('E2ED_')) {
e2edEnvironmentVariables[name] = value;
}
}
Expand Down

0 comments on commit 452b364

Please sign in to comment.