-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add version number to welcome message
- Loading branch information
1 parent
9e7f672
commit 980e711
Showing
5 changed files
with
25 additions
and
21 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { describe, it, expect } from "vitest"; | ||
import { getCanopyVersion } from "../../utils"; | ||
import { PACK_VERSION } from "../../../Canopy [BP]/scripts/constants.js"; | ||
|
||
describe('Constants', () => { | ||
describe('PACK_VERSION', () => { | ||
it('should match the manifest version', () => { | ||
expect(PACK_VERSION).toBe(getCanopyVersion()); | ||
}); | ||
}); | ||
}); |