Skip to content

Commit b3dadff

Browse files
fix ci issue
1 parent d090301 commit b3dadff

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

packages/parser/src/models/v2/channel.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ export class Channel extends BaseModel<v2.ChannelObject, { id: string, address:
3939
return description(this);
4040
}
4141

42+
hasTitle(): boolean {
43+
return false;
44+
}
45+
46+
title(): string | undefined {
47+
return undefined;
48+
}
49+
4250
servers(): ServersInterface {
4351
const servers: ServerInterface[] = [];
4452
const allowedServers: string[] = this._json.servers || [];

packages/parser/test/models/v2/utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,5 @@ export function assertTags(model: Constructor<TagsMixinInterface>) {
147147
expect(d3.tags().length).toEqual(0);
148148
});
149149
});
150-
}
150+
}
151+

0 commit comments

Comments
 (0)