Skip to content

Commit e244b18

Browse files
authored
Merge pull request #397 from emilefokkemanavara/fix/rule-types
fix: type of Rule constructor and Rule's name
2 parents fee2d42 + e369275 commit e244b18

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

test/rule.test.mjs

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ describe("Rule", () => {
1212
});
1313

1414
describe("constructor()", () => {
15+
it("can be initialized without anything", () => {
16+
const rule = new Rule();
17+
expect(rule.name).toBeUndefined();
18+
})
19+
1520
it("can be initialized with priority, conditions, event, and name", () => {
1621
const condition = {
1722
all: [Object.assign({}, conditionBase)],

test/types.test-d.mts

+5
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ describe("type tests", () => {
8787
const rule = new Rule(ruleProps);
8888
const ruleFromString: Rule = new Rule(JSON.stringify(ruleProps));
8989

90+
it("name of rule is possibly undefined", () => {
91+
const ruleWithoutInit = new Rule();
92+
expectTypeOf<string | undefined>(ruleWithoutInit.name);
93+
})
94+
9095
it("returns the engine when adding a rule", () => {
9196
expectTypeOf<Engine>(engine.addRule(rule));
9297
});

types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ export interface RuleResult {
189189
}
190190

191191
export class Rule implements RuleProperties {
192-
constructor(ruleProps: RuleProperties | string);
193-
name: string;
192+
constructor(ruleProps?: RuleProperties | string);
193+
name?: string;
194194
conditions: TopLevelCondition;
195195
event: Event;
196196
priority: number;

0 commit comments

Comments
 (0)