Reshuffle file structure

This commit is contained in:
Hakan Bastedt
2023-12-31 09:17:42 +01:00
parent 1851f4168e
commit 485901120c
125 changed files with 45 additions and 45 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);
});
});