How do I integrate (html) fixtures with testacular? Is there any recommendation for performing DOM based tests or is it an anti-pattern?
Objective : I am trying to test
As stated on http://testacular.github.com/0.6.0/config/files.html, since version 0.5.2 you can use the new configuration syntax:
files = [
JASMINE,
JASMINE_ADAPTER,
'test/spec/**/*.js',
{
pattern: 'test/fixtures/*.html',
watched: true,
included: false,
served: true
}
];
I just tried it and it works fine for me.