From 40ef15f7abf7e1f8b34a11ca7ddde574d68f6b84 Mon Sep 17 00:00:00 2001 From: MargaritaLoseva Date: Tue, 15 May 2018 16:25:16 +0300 Subject: [PATCH] [docs] absolute links specified (#2414) * absolute links specified * absolute links is changelog * minor change --- CHANGELOG.md | 4 ++-- docs/articles/blog/2018-05-15-testcafe-v0-20-0-released.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2d9e431eec..3d7a0fc9799 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ TestCafe now allows you to record HTTP request data or mock responses. You can also create a custom HTTP request hook to emulate authentications like **Kerberos** or **Client Certificate Authentication**. -See [Intercepting HTTP Requests](docs/articles/documentation/test-api/intercepting-http-requests/README.html) for more information. +See [Intercepting HTTP Requests](https://devexpress.github.io/testcafe/documentation/test-api/intercepting-http-requests) for more information. ### Enhancements @@ -49,7 +49,7 @@ To include testing metadata to reports, use the [custom reporter methods](https: TestCafe now throws an error if you pass a regular promise to the assertion's `expect` method. -If you need to assert a regular promise, set the [allowUnawaitedPromise](docs/articles/documentation/test-api/assertions/README.html#optionsallowunawaitedpromise) option to `true`. +If you need to assert a regular promise, set the [allowUnawaitedPromise](https://devexpress.github.io/testcafe/documentation/test-api/assertions/#optionsallowunawaitedpromise) option to `true`. ```js await t.expect(doSomethingAsync()).ok('check that a promise is returned', { allowUnawaitedPromise: true }); diff --git a/docs/articles/blog/2018-05-15-testcafe-v0-20-0-released.md b/docs/articles/blog/2018-05-15-testcafe-v0-20-0-released.md index 84854740d9e..df57daf2c14 100644 --- a/docs/articles/blog/2018-05-15-testcafe-v0-20-0-released.md +++ b/docs/articles/blog/2018-05-15-testcafe-v0-20-0-released.md @@ -13,7 +13,7 @@ Intercepting HTTP requests, specifying resources accessed by bypassing a proxy s TestCafe now allows you to record HTTP request data or mock responses. You can also create a custom HTTP request hook to emulate authentications like **Kerberos** or **Client Certificate Authentication**. -See [Intercepting HTTP Requests](docs/articles/documentation/test-api/intercepting-http-requests/README.html) for more information. +See [Intercepting HTTP Requests](https://devexpress.github.io/testcafe/documentation/test-api/intercepting-http-requests) for more information. ## Enhancements @@ -56,7 +56,7 @@ To include testing metadata to reports, use the [custom reporter methods](https: TestCafe now throws an error if you pass a regular promise to the assertion's `expect` method. -If you need to assert a regular promise, set the [allowUnawaitedPromise](docs/articles/documentation/test-api/assertions/#optionsallowunawaitedpromise) option to `true`. +If you need to assert a regular promise, set the [allowUnawaitedPromise](https://devexpress.github.io/testcafe/documentation/test-api/assertions/#optionsallowunawaitedpromise) option to `true`. ```js await t.expect(doSomethingAsync()).ok('check that a promise is returned', { allowUnawaitedPromise: true });