-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Entity not updating passed as string not object (#82)
Co-authored-by: Marco Kreeft <[email protected]>
- Loading branch information
1 parent
f8b4a1d
commit ef45d6b
Showing
7 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { createMock } from 'ts-auto-mock'; | ||
import { RoomCardEntity } from '../../src/types/room-card-types'; | ||
import { getEntity } from '../../src/util'; | ||
import { HassEntity } from 'home-assistant-js-websocket'; | ||
|
||
describe('Testing util file function getEntity', () => { | ||
test('Passing entity string should return entityId', () => { | ||
expect(getEntity('sensor.entity_sensor')).toBe('sensor.entity_sensor'); | ||
}), | ||
test('Passing entity object should return entityId', () => { | ||
const entity: RoomCardEntity = { | ||
stateObj: createMock<HassEntity>(), | ||
entity: 'sensor.entity_sensor' | ||
}; | ||
expect(getEntity(entity)).toBe('sensor.entity_sensor'); | ||
}), | ||
test('Passing entity undefined should return null', () => { | ||
expect(getEntity(undefined)).toBe(null); | ||
}) | ||
}) |