forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategorized-summary.test.js
More file actions
49 lines (42 loc) · 1.47 KB
/
categorized-summary.test.js
File metadata and controls
49 lines (42 loc) · 1.47 KB
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
import { GraphQLList, GraphQLInt } from 'graphql'
import { categorizedSummaryType, summaryCategoryType } from '../index'
describe('given the categorized summary gql object', () => {
describe('testing the field definitions', () => {
it('has a categories field', () => {
const demoType = categorizedSummaryType.getFields()
expect(demoType).toHaveProperty('categories')
expect(demoType.categories.type).toMatchObject(
GraphQLList(summaryCategoryType),
)
})
it('has a total field', () => {
const demoType = categorizedSummaryType.getFields()
expect(demoType).toHaveProperty('total')
expect(demoType.total.type).toMatchObject(GraphQLInt)
})
})
describe('testing the field resolvers', () => {
describe('testing the categories resolver', () => {
it('returns the resolved value', () => {
const demoType = categorizedSummaryType.getFields()
const summary = {
categories: [
{
pass: 50,
fail: 1000,
},
],
total: 1050,
}
const expectedResults = [{ fail: 1000, pass: 50 }]
expect(demoType.categories.resolve(summary)).toEqual(expectedResults)
})
})
describe('testing the total resolver', () => {
it('returns the resolved value', () => {
const demoType = categorizedSummaryType.getFields()
expect(demoType.total.resolve({ total: 1500 })).toEqual(1500)
})
})
})
})