setting up for locale header change

This commit is contained in:
Peter Cottle 2015-03-28 10:15:52 -07:00
parent 73728bc733
commit c1e7274c72
8 changed files with 45 additions and 10 deletions

View file

@ -0,0 +1,31 @@
var CasperUtils = require('./casperUtils').CasperUtils;
casper.start(
CasperUtils.getUrl(),
function() {
this.test.assertTitle('Learn Git Branching');
casper.waitFor(CasperUtils.waits.jsMount)
.then(CasperUtils.multiAssert(
CasperUtils.asserts.visibleIDs([
'commandLineHistory',
'terminal',
'interfaceWrapper',
'mainVisSpace',
'commandLineBar'
]),
CasperUtils.asserts.visibleSelectors([
'div.visBackgroundColor',
'p.commandLine'
])
))
.waitFor(CasperUtils.waits.allCommandsFinished)
.then(
CasperUtils.asserts.visibleSelectors(['p.finished'])
)
.then(CasperUtils.testDone);
}).run();