Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Switch tests back to coffeescript until JS is supported
Browse files Browse the repository at this point in the history
  • Loading branch information
damieng committed Feb 1, 2018
1 parent 8c59794 commit 588150b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 22 deletions.
17 changes: 17 additions & 0 deletions spec/grammar-spec.coffee
@@ -0,0 +1,17 @@
describe "Language C# package", ->

beforeEach ->
waitsForPromise ->
atom.packages.activatePackage("language-csharp")

describe "C# Script grammar", ->
it "parses the grammar", ->
grammar = atom.grammars.grammarForScopeName("source.csx")
expect(grammar).toBeDefined()
expect(grammar.scopeName).toBe "source.csx"

describe "C# Cake grammar", ->
it "parses the grammar", ->
grammar = atom.grammars.grammarForScopeName("source.cake")
expect(grammar).toBeDefined()
expect(grammar.scopeName).toBe "source.cake"
22 changes: 0 additions & 22 deletions spec/grammar-spec.js

This file was deleted.

0 comments on commit 588150b

Please sign in to comment.