test("adds action creator functions to the SeqPart instance", () => {
        const acKeys = Object.keys(testPart.actionCreators);
        expect(acKeys).toContain("addNote");
        expect(acKeys).toContain("removeNote");
    });