How to create a Jasmine test for multiple HTML files on the Coding Exercise panel?

cansuari
Posts: 1
I created a coding exercise for Web Development. I've 4 HTML files for that. And the test file(evaluate.js) testing only for index.html. I need to run some specific tests for the other 3 HTML files.
The example structure for "Multiple Files" works for js files.
describe('foo()', function() {
it('should return true', function() {
expect(foo()).toBe(true);
});
});
describe('bar()', function() {
it('should return false', function() {
expect(bar()).toBe(false);
});
});
But, how to create tests for multiple HTML files?
Tagged:
0