Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. module.exports = function (config) {
  2. config.set({
  3. //basePath: '/',
  4.  
  5. // files to include, ordered by dependencies
  6. files: [
  7. {pattern:'node_modules/requirejs/require.js', included:true},
  8. {pattern: 'test.js', included:true}
  9. ],
  10. frameworks: ['jasmine'],
  11. browsers: ['Chrome']
  12. })
  13. };
  14.  
  15. define([], function () {
  16. describe("Unit tests", function () {
  17. it("Simple test", function () {
  18. expect(true).toBe(false);
  19. });
  20. });
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement