Refactor config file/path handling.

This commit is contained in:
Christian Williams
2009-12-28 16:27:02 -06:00
parent 2045226ba7
commit 81aeeeedee
15 changed files with 150 additions and 76 deletions

View File

@@ -0,0 +1,2 @@
ExampleClass = function() {
};

View File

@@ -1,9 +1,9 @@
describe('ExampleSuite', function () {
describe('Example', function () {
it('should have a passing test', function() {
expect(true).toEqual(true);
});
describe('Nested Describe', function () {
describe('nested describe', function () {
it('should also have a passing test', function () {
expect(true).toEqual(true);
});