Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dsh-plugin-desktop/tests/profile.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -704,8 +704,8 @@ virtualStoreDirMaxLength: 60
expect(() => readDesktopShellMode({ path })).toThrow('invalid settings document')
})

it('treats an empty machine-wide patch file as no desktop patches', () => {
for (const content of ['', '# no machine-wide patches\n']) {
it('treats a semantically empty machine-wide patch file as no desktop patches', () => {
for (const content of ['', ' \r\n \r\n', '# no machine-wide patches\n']) {
const home = temporaryHome()
writeFileSync(join(home, 'cordis.patch.yml'), content)

Expand Down