Created
June 26, 2017 23:16
-
-
Save griffinmyers/7002f16d308cdb254494c5af18d69dbc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Jasmine = require('jasmine'); | |
const SpecReporter = require('jasmine-spec-reporter'); | |
const runner = new Jasmine(); | |
runner.configureDefaultReporter({ print: function() {} }); | |
runner.addReporter(new SpecReporter()); | |
runner.loadConfig({ | |
spec_dir: 'test/visual-diff', | |
spec_files: ['diff-test.js'], | |
stopSpecOnExpectationFailure: false, | |
random: false | |
}); | |
runner.execute(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment