Changeset 0.37.18 (#230)

Co-authored-by: gobha <jasafpro@gmail.com>
Co-committed-by: gobha <jasafpro@gmail.com>
This commit is contained in:
2026-03-24 19:55:14 +00:00
committed by xcaliber
parent 96a4f16bc5
commit 3a4afea7f2
34 changed files with 1534 additions and 1290 deletions

View File

@@ -24,6 +24,31 @@
validate: function (r) { var arr = T.unwrapList(r); T.assert(arr.length >= 0, 'expected list'); }
});
// ── GetDefault (v0.37.18) ──
var defaultWsId = null;
await T.test('workspaces', 'getDefault', 'sw.api.workspaces.getDefault()', {
sdk: function () { return sw.api.workspaces.getDefault(); },
raw: { method: 'GET', path: '/workspaces/default' },
validate: function (r) {
T.assertShape(r, T.S.workspace, 'workspace');
T.assert(r.owner_type === 'user', 'expected owner_type=user');
T.assert(r.owner_id === userId, 'expected owner_id=current user');
defaultWsId = r.id;
}
});
// ── GetDefault idempotent ──
await T.test('workspaces', 'getDefault', 'sw.api.workspaces.getDefault() idempotent', {
sdk: function () { return sw.api.workspaces.getDefault(); },
raw: { method: 'GET', path: '/workspaces/default' },
validate: function (r) {
T.assert(r.id === defaultWsId, 'expected same workspace on second call');
}
});
// ── Create ──
await T.test('workspaces', 'crud', 'sw.api.workspaces.create()', {