Ny structure. Start of the "main" branch

This commit is contained in:
Hakan Bastedt
2024-11-20 11:18:13 +01:00
parent 31b896871d
commit 1918604586
415 changed files with 202039 additions and 21080 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);
});
});