UNPKG

message-headers

Version:

Automatically updated list of RFC HTTP permanent and provisional headers from IANA (<https://www.iana.org/assignments/message-headers/message-headers.xhtml>)

11 lines (8 loc) 271 B
const { promisify } = require('util'); const test = require('ava'); const sgf = require('staged-git-files'); const sgfPromise = promisify(sgf, sgf); test('checks for updated files', async t => { const results = await sgfPromise(); t.true(results.length === 0); });