Files
MyOwnEtherCATDevice/EEPROM_generator/spec/backupSpec.js
2023-12-31 09:17:42 +01:00

15 lines
293 B
JavaScript

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);
});
});