this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

move tests

+3 -3
+1 -1
test/config-set-mode.js test/cli/actions/config/set-mode.js
··· 18 18 mock.module('#library', {namedExports: library}); 19 19 20 20 const {default: setMode} = 21 - await import('../source/cli/actions/config/set-mode.js'); 21 + await import('../../../../source/cli/actions/config/set-mode.js'); 22 22 23 23 describe('setMode', () => { 24 24 beforeEach(() => {
+1 -1
test/config-show.js test/cli/actions/config/show.js
··· 13 13 }; 14 14 mock.module('#library', {namedExports: library}); 15 15 16 - const {default: show} = await import('../source/cli/actions/config/show.js'); 16 + const {default: show} = await import('../../../../source/cli/actions/config/show.js'); 17 17 18 18 describe('show', () => { 19 19 beforeEach(() => {
+1 -1
test/get-current-mode.js test/library/get-current-mode.js
··· 5 5 mock.module('dark-mode', {defaultExport: darkMode}); 6 6 7 7 const {default: getCurrentMode} = 8 - await import('../source/library/get-current-mode.js'); 8 + await import('../../source/library/get-current-mode.js'); 9 9 10 10 describe('getCurrentMode', () => { 11 11 beforeEach(() => {