neonctl 1.25.0 → 1.25.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/branches.test.js +7 -0
- package/package.json +1 -1
- package/utils/enrichers.js +1 -0
|
@@ -243,6 +243,13 @@ describe('branches', () => {
|
|
|
243
243
|
snapshot: true,
|
|
244
244
|
},
|
|
245
245
|
});
|
|
246
|
+
testCliCommand({
|
|
247
|
+
name: 'get by name with numeric name',
|
|
248
|
+
args: ['branches', 'get', '123', '--project-id', 'test'],
|
|
249
|
+
expected: {
|
|
250
|
+
snapshot: true,
|
|
251
|
+
},
|
|
252
|
+
});
|
|
246
253
|
testCliCommand({
|
|
247
254
|
name: 'add compute',
|
|
248
255
|
args: ['branches', 'add-compute', 'test_branch', '--project-id', 'test'],
|
package/package.json
CHANGED