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 9df735b commit 8c59794Copy full SHA for 8c59794
spec/grammar-spec.js
@@ -7,14 +7,14 @@ describe("Language C# package", () => {
7
it("parses the grammar", () => {
8
const grammar = atom.grammars.grammarForScopeName("source.csx")
9
expect(grammar).toBeDefined()
10
- return expect(grammar.scopeName).toBe("source.csx")
+ expect(grammar.scopeName).toBe("source.csx")
11
})
12
)
13
14
- return describe("C# Cake grammar", () =>
+ describe("C# Cake grammar", () =>
15
16
const grammar = atom.grammars.grammarForScopeName("source.cake")
17
- return expect(grammar).toBeDefined()
+ expect(grammar).toBeDefined()
18
19
20
0 commit comments