Skip to content

Commit f27223e

Browse files
committed
fix: paths test
1 parent de77888 commit f27223e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

api/src/__test__/store/modules/paths.test.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import { expect, test } from 'vitest';
22

3+
4+
35
import { store } from '@app/store/index.js';
46

7+
8+
9+
10+
511
test('Returns paths', async () => {
612
const { paths } = store.getState();
713
expect(Object.keys(paths)).toMatchInlineSnapshot(`
@@ -25,9 +31,10 @@ test('Returns paths', async () => {
2531
"keyfile-base",
2632
"machine-id",
2733
"log-base",
34+
"unraid-log-base",
2835
"var-run",
2936
"auth-sessions",
3037
"auth-keys",
3138
]
3239
`);
33-
});
40+
});

0 commit comments

Comments
 (0)