diff --git a/src/sbt-test/sbt-mocha-plugin/test/src/test/assets/HappyAssetSpec.js b/src/sbt-test/sbt-mocha-plugin/test/src/test/assets/HappyAssetSpec.js index 7680e9e..6b8a283 100644 --- a/src/sbt-test/sbt-mocha-plugin/test/src/test/assets/HappyAssetSpec.js +++ b/src/sbt-test/sbt-mocha-plugin/test/src/test/assets/HappyAssetSpec.js @@ -8,4 +8,11 @@ describe("a test asset", function() { it("should be able to require a main resource", function() { require("./HappyPublic").foo(); }); -}); \ No newline at end of file + describe("outer", function() { + describe("inner", function() { + it("should do a thing", function() { + expect(1).to.equal(1); + }); + }); + }); +});