From a67d6362c25f815de8dfc653141374cee2e68f36 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 27 Jan 2014 12:50:57 -0800 Subject: [PATCH] Assert snippet.cson is copied over --- spec/config-spec.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/config-spec.coffee b/spec/config-spec.coffee index 13785568f..77455c5c2 100644 --- a/spec/config-spec.coffee +++ b/spec/config-spec.coffee @@ -218,7 +218,7 @@ describe "Config", -> runs -> expect(fs.existsSync(atom.config.configDirPath)).toBeTruthy() expect(fs.existsSync(path.join(atom.config.configDirPath, 'packages'))).toBeTruthy() - expect(fs.existsSync(path.join(atom.config.configDirPath, 'snippets'))).toBeTruthy() + expect(fs.isFileSync(path.join(atom.config.configDirPath, 'snippets.cson'))).toBeTruthy() expect(fs.isFileSync(path.join(atom.config.configDirPath, 'config.cson'))).toBeTruthy() describe ".loadUserConfig()", ->