• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

RobotWebTools / rclnodejs / 14328507295
86%

Build:
DEFAULT BRANCH: develop
Ran 08 Apr 2025 08:17AM UTC
Jobs 3
Files 36
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

08 Apr 2025 08:12AM UTC coverage: 85.325%. Remained the same
14328507295

push

github

web-flow
feat: add descriptor namespaces (#1095)

This will add a new namespace called `descriptor` for each ROS package interface generated by `generate-ros-messages`. The new namespace is found inside the msg|srv|action namespace for each package. For example:

```typescript
namespace builtin_interfaces {
    namespace msg {
      export interface Duration {
        sec: number;
        nanosec: number;
      }
      export interface DurationConstructor {
        new(other?: Duration): Duration;
      }
      export interface Time {
        sec: number;
        nanosec: number;
      }
      export interface TimeConstructor {
        new(other?: Time): Time;
      }
      namespace descriptor {
        export interface Duration {
          sec: 'int32';
          nanosec: 'uint32';
        }
        export interface Time {
          sec: 'int32';
          nanosec: 'uint32';
        }
      }
    }
  }
``` 
The descriptor interfaces always have the format `{field: "<interface_type>"}`. For example:

```typescript
  namespace geometry_msgs {
    namespace msg {
      namespace descriptor {
        export interface PointStamped {
          header: 'std_msgs/msg/Header';
          point: 'geometry_msgs/msg/Point';
        }
      }
    } 
  }  
```

Here is the discussion: [discussions/1091](https://github.com/RobotWebTools/rclnodejs/discussions/1091)

709 of 920 branches covered (77.07%)

Branch coverage included in aggregate %.

1733 of 1942 relevant lines covered (89.24%)

1104.81 hits per line

Jobs
ID Job ID Ran Files Coverage
1 run-23.X - 14328507295.1 08 Apr 2025 08:17AM UTC 36
85.29
GitHub Action Run
2 run-20.X - 14328507295.2 08 Apr 2025 08:17AM UTC 36
85.29
GitHub Action Run
3 run-22.X - 14328507295.3 08 Apr 2025 08:17AM UTC 36
85.29
GitHub Action Run
Source Files on build 14328507295
  • Tree
  • List 36
  • Changed 1
  • Source Changed 0
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #14328507295
  • 1b6cf74d on github
  • Prev Build on develop (#14304778568)
  • Next Build on develop (#14330742614)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc