8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
|
describe("external vendor test", function() {
|
||
|
|
||
|
it("should have pulled in jQuery", function() {
|
||
|
expect($.fn.jquery).toBeTruthy();
|
||
|
});
|
||
|
|
||
|
});
|