Last active
February 10, 2018 23:43
-
-
Save johndowns/c7f12420745dc8f3c3349116ebb3f570 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {getGroupedOrdersImpl} from '../src/getGroupedOrders' | |
describe("getGroupedOrdersImpl", function() { | |
it("should return an empty array", function() { | |
// arrange | |
var collectionObject = null; | |
// act | |
var result = getGroupedOrdersImpl([], collectionObject); | |
// assert | |
expect(result.length).toBe(0); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment