diff --git a/lab1/main_test.js b/lab1/main_test.js index 74a716b4..c4587b7b 100644 --- a/lab1/main_test.js +++ b/lab1/main_test.js @@ -2,6 +2,8 @@ const test = require('node:test'); const assert = require('assert'); const { MyClass, Student } = require('./main'); +// I didn't change anything but still commit it for demo + test("Test MyClass's addStudent", () => { // TODO throw new Error("Test not implemented"); @@ -20,4 +22,4 @@ test("Test Student's setName", () => { test("Test Student's getName", () => { // TODO throw new Error("Test not implemented"); -}); \ No newline at end of file +});