Skip to content

Commit

Permalink
test: descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Mar 12, 2024
1 parent 8327380 commit ca8272e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/subgraph/tests/plugin/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('Plugin', () => {
});

describe('ProposalCreated', () => {
test('Run Multisig (handleProposalCreated) mappings with mock event', () => {
test('processes the event', () => {
// create state
createMultisigPluginState();

Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -339,7 +339,7 @@ describe('Plugin', () => {
});

describe('ProposalExecuted', () => {
test('Run Multisig (handleProposalExecuted) mappings with mock event', () => {
test('processes the event', () => {
// create state
createMultisigProposalEntityState(
proposalEntityId,
Expand Down Expand Up @@ -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),
Expand Down Expand Up @@ -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),
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit ca8272e

Please sign in to comment.