fix: add missing tests

This commit is contained in:
StevanFreeborn
2023-01-26 22:40:13 -06:00
parent 12f32bc731
commit 9ab72bd37c
7 changed files with 142 additions and 19 deletions
+14 -1
View File
@@ -1,7 +1,7 @@
/**
* @class App - Model for the App object
*/
class App {
export class App {
/**
* @property {string} href - The URL to the app
*/
@@ -16,4 +16,17 @@ class App {
* @property {string} name - The name of the app
*/
name: string;
/**
* @constructor - Creates a new instance of the App class.
* @param {string} href - The URL to the app
* @param {number} id - The id of the app
* @param {string} name - The name of the app
* @returns {App} - A new instance of the App class.
*/
constructor(href: string, id: number, name: string) {
this.href = href;
this.id = id;
this.name = name;
}
}