Skip to content

Commit 588150b

Browse files
committed
Switch tests back to coffeescript until JS is supported
1 parent 8c59794 commit 588150b

File tree

2 files changed

+17
-22
lines changed

2 files changed

+17
-22
lines changed

spec/grammar-spec.coffee

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
describe "Language C# package", ->
2+
3+
beforeEach ->
4+
waitsForPromise ->
5+
atom.packages.activatePackage("language-csharp")
6+
7+
describe "C# Script grammar", ->
8+
it "parses the grammar", ->
9+
grammar = atom.grammars.grammarForScopeName("source.csx")
10+
expect(grammar).toBeDefined()
11+
expect(grammar.scopeName).toBe "source.csx"
12+
13+
describe "C# Cake grammar", ->
14+
it "parses the grammar", ->
15+
grammar = atom.grammars.grammarForScopeName("source.cake")
16+
expect(grammar).toBeDefined()
17+
expect(grammar.scopeName).toBe "source.cake"

spec/grammar-spec.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)