order module export keys in the test

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2023-10-05 11:35:29 +02:00
parent d6a89ded6f
commit 07d0e9e317
@@ -18,15 +18,15 @@ import * as plugin from './plugin';
describe('git-release-manager', () => {
it('should export plugin & friends', () => {
expect(Object.keys(plugin)).toMatchInlineSnapshot(`
expect(Object.keys(plugin).sort()).toMatchInlineSnapshot(`
[
"gitReleaseManagerApiRef",
"constants",
"helpers",
"components",
"testHelpers",
"gitReleaseManagerPlugin",
"GitReleaseManagerPage",
"components",
"constants",
"gitReleaseManagerApiRef",
"gitReleaseManagerPlugin",
"helpers",
"testHelpers",
]
`);
});