We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 285e743 commit 6f5ba82Copy full SHA for 6f5ba82
test/index.js
@@ -36,12 +36,7 @@ describe('demo app', function () {
36
const removeStoredPreferences = function () {
37
const userDataPath = getUserDataPath()
38
try {
39
- fs.unlinkSync(path.join(userDataPath, 'activeDemoButtonId.json'))
40
- } catch (error) {
41
- if (error.code !== 'ENOENT') throw error
42
- }
43
- try {
44
- fs.unlinkSync(path.join(userDataPath, 'activeSectionButtonId.json'))
+ fs.unlinkSync(path.join(userDataPath, 'Settings'))
45
} catch (error) {
46
if (error.code !== 'ENOENT') throw error
47
}
0 commit comments