Experimental unit tests for the Telemetry Table component (#2533)
* Initial commit of telemetry table spec * Added example directory to linter paths. Fixed outstanding linting issues
This commit is contained in:
@@ -23,40 +23,41 @@
|
||||
define([
|
||||
"./src/StatusRepresenter",
|
||||
"./src/StatusCapability",
|
||||
"./src/StatusService",
|
||||
'legacyRegistry'
|
||||
"./src/StatusService"
|
||||
], function (
|
||||
StatusRepresenter,
|
||||
StatusCapability,
|
||||
StatusService,
|
||||
legacyRegistry
|
||||
StatusService
|
||||
) {
|
||||
|
||||
legacyRegistry.register("platform/status", {
|
||||
"extensions": {
|
||||
"representers": [
|
||||
{
|
||||
"implementation": StatusRepresenter
|
||||
}
|
||||
],
|
||||
"capabilities": [
|
||||
{
|
||||
"key": "status",
|
||||
"implementation": StatusCapability,
|
||||
"depends": [
|
||||
"statusService"
|
||||
]
|
||||
}
|
||||
],
|
||||
"services": [
|
||||
{
|
||||
"key": "statusService",
|
||||
"implementation": StatusService,
|
||||
"depends": [
|
||||
"topic"
|
||||
]
|
||||
}
|
||||
]
|
||||
return {
|
||||
name:"platform/status",
|
||||
definition: {
|
||||
"extensions": {
|
||||
"representers": [
|
||||
{
|
||||
"implementation": StatusRepresenter
|
||||
}
|
||||
],
|
||||
"capabilities": [
|
||||
{
|
||||
"key": "status",
|
||||
"implementation": StatusCapability,
|
||||
"depends": [
|
||||
"statusService"
|
||||
]
|
||||
}
|
||||
],
|
||||
"services": [
|
||||
{
|
||||
"key": "statusService",
|
||||
"implementation": StatusService,
|
||||
"depends": [
|
||||
"topic"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user