Skip to content

Instantly share code, notes, and snippets.

@rytmis
Created April 8, 2014 10:12
Show Gist options
  • Save rytmis/10106794 to your computer and use it in GitHub Desktop.
Save rytmis/10106794 to your computer and use it in GitHub Desktop.
///<reference path="~/Scripts/angular.js"/>
///<reference path="~/Scripts/angular-mocks.js"/>
///<reference path="~/Scripts/test-module.js"/>
describe("Foo", function () {
// Whichever browser I select, this won't fire
// be it IE 11, Chrome 33, Firefox 25
debugger;
beforeEach(function () {
// This is what's failing when I run from ReSharper.
module('test-module');
});
it("Should work", function () {
// This is here just so that ReSharper will try to run something.
expect(true).toBeTruthy();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment