From ca8272eda086bed8a5e105826afcd69512380a2d Mon Sep 17 00:00:00 2001 From: Michael Heuer Date: Tue, 12 Mar 2024 11:09:25 +0100 Subject: [PATCH] test: descriptions --- packages/subgraph/tests/plugin/plugin.test.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/subgraph/tests/plugin/plugin.test.ts b/packages/subgraph/tests/plugin/plugin.test.ts index 50e4b7b8..dfd06d59 100644 --- a/packages/subgraph/tests/plugin/plugin.test.ts +++ b/packages/subgraph/tests/plugin/plugin.test.ts @@ -74,7 +74,7 @@ describe('Plugin', () => { }); describe('ProposalCreated', () => { - test('Run Multisig (handleProposalCreated) mappings with mock event', () => { + test('processes the event', () => { // create state createMultisigPluginState(); @@ -217,7 +217,7 @@ describe('Plugin', () => { }); describe('Approved', () => { - test('Run Multisig (handleApproved) mappings with mock event', () => { + test('processes the event', () => { // create state let proposal = createMultisigProposalEntityState( proposalEntityId, @@ -339,7 +339,7 @@ describe('Plugin', () => { }); describe('ProposalExecuted', () => { - test('Run Multisig (handleProposalExecuted) mappings with mock event', () => { + test('processes the event', () => { // create state createMultisigProposalEntityState( proposalEntityId, @@ -389,7 +389,7 @@ describe('Plugin', () => { }); describe('MembersAdded', () => { - test('Run Multisig (handleMembersAdded) mappings with mock event', () => { + test('processes the event', () => { let userArray = [ Address.fromString(ADDRESS_ONE), Address.fromString(ADDRESS_TWO), @@ -424,7 +424,7 @@ describe('Plugin', () => { }); describe('MembersRemoved', () => { - test('Run Multisig (handleMembersRemoved) mappings with mock event', () => { + test('processes the event', () => { // create state let memberAddresses = [ Address.fromString(ADDRESS_ONE), @@ -469,7 +469,7 @@ describe('Plugin', () => { }); describe('MultisigSettingsUpdated', () => { - test('Run Multisig (handleMultisigSettingsUpdated) mappings with mock event', () => { + test('processes the event', () => { // create state let entityID = createMultisigPluginState().id;