mirror of
https://github.com/larksuite/cli.git
synced 2026-07-07 17:45:15 +08:00
* feat: okr domain Change-Id: I1877c56e33e3620b696351ed9e4c8615dbe17c4b * feat: okr skill update Change-Id: I1877c56e33e3620b696351ed9e4c8615dbe17c4b
18 lines
356 B
Go
18 lines
356 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package okr
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestShortcutsRegistration(t *testing.T) {
|
|
convey.Convey("Shortcuts() returns all commands", t, func() {
|
|
list := Shortcuts()
|
|
convey.So(len(list), convey.ShouldBeGreaterThan, 0)
|
|
})
|
|
}
|