forked from octokit/octokit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject-cards-test.js
82 lines (68 loc) · 1.61 KB
/
project-cards-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const {getInstance} = require('../util')
require('../mocha-node-setup')
describe('api.github.com', () => {
let github
beforeEach(() => {
return getInstance('project-cards')
.then(instance => {
github = instance
github.authenticate({
type: 'token',
token: '0000000000000000000000000000000000000001'
})
})
})
it('github.projects.*ProjectCard()', () => {
return github.projects.createProjectCard({
column_id: 1000,
note: 'Example card 1'
})
.then(() => {
return github.projects.createProjectCard({
column_id: 1000,
note: 'Example card 2'
})
})
.then(() => {
return github.projects.getProjectCards({
column_id: 1000
})
})
.then(() => {
return github.projects.getProjectCard({
id: 1000
})
})
.then(() => {
return github.projects.updateProjectCard({
id: 1000,
note: 'Example card 1 updated'
})
})
.then(() => {
return github.projects.moveProjectCard({
id: 1000,
position: 'top',
column_id: 1001
})
})
.then(() => {
return github.projects.moveProjectCard({
id: 1001,
position: 'bottom',
column_id: 1001
})
})
.then(() => {
return github.projects.moveProjectCard({
id: 1000,
position: 'after:1001'
})
})
.then(() => {
return github.projects.deleteProjectCard({
id: 1000
})
})
})
})