Think I got the EEPROM_Generator right

This commit is contained in:
Hakan Bastedt
2023-12-22 22:26:40 +01:00
parent 5bb330f215
commit c972fef18f
29 changed files with 15546 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
describe("backup", function() {
beforeEach(function() {
});
it("should return false for button control", function() {
// arrange
const control = { type: 'button' };
// act
var result = isBackedUp(control);
// assert
expect(result).toEqual(false);
});
});