Skip to content

Commit

Permalink
remove unneeded tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Rami Hadi committed Jun 1, 2016
1 parent 34de69b commit caa47dd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
15 changes: 0 additions & 15 deletions test/deeplink.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,4 @@ describe('buildfire.deeplink', function () {
});
});

describe('deeplink createLink', function () {
beforeEach( function () {
spyOn(buildfire.deeplink, 'createLink');

buildfire.deeplink.createLink('section:7');
});

it("deeplink createLink should exist and be a function", function () {
expect(typeof buildfire.deeplink.createLink).toEqual("function");
});

it("deeplink createLink", function () {
expect(buildfire.deeplink.createLink).toHaveBeenCalledWith('section:7');
});
});
});
5 changes: 0 additions & 5 deletions test/ftest/deeplink.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,4 @@ describe('buildfire.deeplink', function () {
});
});

describe('deeplink createLink', function () {
it("deeplink createLink should exist and be a function", function () {
expect(buildfire.deeplink.createLink).to.a("function");
});
});
});

0 comments on commit caa47dd

Please sign in to comment.