Skip to content
This repository was archived by the owner on Feb 28, 2023. It is now read-only.

Commit 25b3b8c

Browse files
committed
remove only
1 parent 3c2d533 commit 25b3b8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cypress/integration/05-xhr/answer-intercept-spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('intercept', () => {
6060
})
6161
})
6262

63-
context.only('dynamic alias', () => {
63+
context('dynamic alias', () => {
6464
it('sets the alias after inspecting the request', () => {
6565
cy.intercept('*', (req) => {
6666
if (req.method === 'GET' && req.url.endsWith('/todos')) {
@@ -72,7 +72,7 @@ describe('intercept', () => {
7272
cy.wait('@todos')
7373
})
7474

75-
it.only('creates random alias', () => {
75+
it('creates random alias', () => {
7676
let alias = ''
7777
cy.intercept('GET', '/todos', (req) => {
7878
alias = 'get-todos-' + Cypress._.random(1e6)

0 commit comments

Comments
 (0)