Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Restore the webapp directory from the mattermost-plugin-starter-template to enable frontend development. Replace all npm/NPM references with bun across the Makefile, build/setup.mk, and golangci-lint config. Add the webapp bundle_path back to plugin.json. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import manifest from 'manifest';
|
|
|
|
test('Plugin manifest, id and version are defined', () => {
|
|
expect(manifest).toBeDefined();
|
|
expect(manifest.id).toBeDefined();
|
|
expect(manifest.version).toBeDefined();
|
|
});
|