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

RobotWebTools / rclnodejs / 14330121487
85%
develop: 81%

Build:
Build:
LAST BUILD BRANCH: fix-1330-11
DEFAULT BRANCH: develop
Ran 08 Apr 2025 09:36AM 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 09:30AM UTC coverage: 85.045% (-0.03%) from 85.075%
14330121487

push

github

minggangw
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)

706 of 920 branches covered (76.74%)

Branch coverage included in aggregate %.

1728 of 1942 relevant lines covered (88.98%)

1005.89 hits per line

Uncovered Existing Lines

Lines Coverage ∆ File
20
89.58
-0.12% lib/node.js
Jobs
ID Job ID Ran Files Coverage
1 run-23.X - 14330121487.1 08 Apr 2025 09:36AM UTC 36
85.01
GitHub Action Run
2 run-22.X - 14330121487.2 08 Apr 2025 09:36AM UTC 36
85.01
GitHub Action Run
3 run-20.X - 14330121487.3 08 Apr 2025 09:36AM UTC 36
85.05
GitHub Action Run
Source Files on build 14330121487
  • Tree
  • List 36
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #14330121487
  • 57f46067 on github
  • Prev Build on jazzy (#14164928053)
  • Next Build on jazzy (#14330794789)
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

© 2025 Coveralls, Inc