Skip to content

Commit

Permalink
Format with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
jstayton committed Nov 19, 2019
1 parent 58df576 commit a621b20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/src/services/flatten_map.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
const flattenMap = require('../../../src/services/flatten_map')

test('uses the map key/value as the object key/value by default', () => {
const map = new Map([['test', 123], ['testing', 456]])
const map = new Map([
['test', 123],
['testing', 456],
])

expect(flattenMap({ map })).toEqual({
test: 123,
Expand Down

0 comments on commit a621b20

Please sign in to comment.