mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-10-17 07:57:43 +02:00
- Update some sheets which have very long sections - Remove `layout: 2017/sheet` (everything has the same layout now) - Remove outdated sheets
382 B
382 B
title, category
title | category |
---|---|
Nock | JavaScript libraries |
Nock
scope = nock('http://foo.com')
scope = nock('http://foo.com', { allowUnmocked: true })
nock('http://foo.com')
.get('/user')
.reply(200, { id: 1234 })
Filtering
nock('http://foo.com')
.filteringPath(/[&\?]token=[^&]*/g, '')
.get('/user')
// catches "/user?token=..." as well