๐Ÿ“ฆ ljharb / can-merge

๐Ÿ“„ parsePullRequest.js ยท 19 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19'use strict';

const test = require('tape');

const parsePullRequest = require('../utils/parsePullRequest');
const mockParsePR = require('./mocks/parsePR.json');

test('parsePullRequest', (t) => {
	mockParsePR.forEach((mock) => {
		t.deepEqual(
			parsePullRequest(mock.response),
			mock.expected,
			mock.description,
		);
	});

	t.end();
});