Guest User

Untitled

a guest
Jan 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. describe("first suite", function() {
  2. it("first test", function(done) {
  3. expect(true).toBeTruthy();
  4. setTimeout(done, 1000);
  5. });
  6.  
  7. it("second test", function(done) {
  8. expect(true).toBeTruthy();
  9. setTimeout(done, 1000);
  10. });
  11. });
  12.  
  13. describe("second suite", function() {
  14. it("first test", function(done) {
  15. expect(true).toBeTruthy();
  16. setTimeout(done, 1000);
  17. });
  18.  
  19. it("second test", function(done) {
  20. expect(true).toBeTruthy();
  21. setTimeout(done, 1000);
  22. });
  23. });
  24.  
  25. npm i karma-parallel
  26.  
  27. module.exports = function(config) {
  28. config.set({
  29. frameworks: ['jasmine', 'parallel']
  30. });
  31. };
Add Comment
Please, Sign In to add comment