Skip to content

Commit c3c60e8

Browse files
authored
fix: missing or incorrect links (#467)
1 parent b72e66f commit c3c60e8

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

app/commands/network-requests.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ <h4 id="request"><a href="https://on.cypress.io/request">cy.request()</a></h4>
142142
<div class="col-xs-12"><hr></div>
143143

144144
<div class="col-xs-7">
145-
<h4 id="http"><a href="https://on.cypress.io/http">cy.intercept()</a></h4>
146-
<p>To route responses to matching requests, use the <a href="https://on.cypress.io/http"><code>cy.intercept()</code></a> command.</p>
145+
<h4 id="http"><a href="https://on.cypress.io/intercept">cy.intercept()</a></h4>
146+
<p>To route responses to matching requests, use the <a href="https://on.cypress.io/intercept"><code>cy.intercept()</code></a> command.</p>
147147
<pre><code class="javascript"> let message = 'whoa, this comment does not exist'
148148

149149
// Listen to GET to comments/1

cypress/integration/examples/actions.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ context('Actions', () => {
261261
})
262262

263263
it('cy.scrollTo() - scroll the window or element to a position', () => {
264-
// https://on.cypress.io/scrollTo
264+
// https://on.cypress.io/scrollto
265265

266266
// You can scroll to 9 specific positions of an element:
267267
// -----------------------------------

cypress/integration/examples/network_requests.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ context('Network Requests', () => {
114114
})
115115

116116
it('cy.intercept() - route responses to matching requests', () => {
117-
// https://on.cypress.io/http
117+
// https://on.cypress.io/intercept
118118

119119
let message = 'whoa, this comment does not exist'
120120

cypress/integration/examples/traversal.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ context('Traversal', () => {
102102
})
103103

104104
it('.prevAll() - get all previous sibling DOM elements', () => {
105-
// https://on.cypress.io/prevAll
105+
// https://on.cypress.io/prevall
106106
cy.get('.fruits-list').find('.third')
107107
.prevAll().should('have.length', 2)
108108
})
109109

110110
it('.prevUntil() - get all previous sibling DOM elements until el', () => {
111-
// https://on.cypress.io/prevUntil
111+
// https://on.cypress.io/prevuntil
112112
cy.get('.foods-list').find('#nuts')
113113
.prevUntil('#veggies').should('have.length', 3)
114114
})

shippable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# http://docs.shippable.com/platform/workflow/config/
88

99
# set environment variable CYPRESS_RECORD_KEY to allow recording test artifacts
10-
# on Cypress dashboard https://on.cypress.io/dashboard-service
10+
# on Cypress dashboard https://on.cypress.io/dashboard-introduction
1111
env:
1212
# the record key should be secret, thus it is encrypted
1313
# http://docs.shippable.com/ci/env-vars/

0 commit comments

Comments
 (0)