Created
March 9, 2018 20:23
-
-
Save sneljo1/07041a504ca865bf75a0b388cc3e63fa 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 { MyChaincode } from '../<path_to_your_chaincode_class>'; | |
import { ChaincodeMockStub, Transform } from "@theledger/fabric-mock-stub"; | |
// You always need your chaincode so it knows which chaincode to invoke on | |
const chaincode = new MyChaincode(); | |
describe('Test MyChaincode', () => { | |
it("Should init without issues", async () => { | |
const mockStub = new ChaincodeMockStub("MyMockStub", chaincode); | |
const response = await mockStub.mockInit("tx1", []); | |
expect(response.status).to.eql(200) | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment