mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
16 lines
390 B
JavaScript
16 lines
390 B
JavaScript
QUnit.test('agree to terms', function (assert) {
|
|
var done = assert.async()
|
|
let app
|
|
|
|
wait().then(function() {
|
|
app = $('iframe').contents().find('#app-content .mock-app-root')
|
|
app.find('.markdown').prop('scrollTop', 100000000)
|
|
return wait()
|
|
}).then(function() {
|
|
var title = app.find('h1').text()
|
|
assert.equal(title, 'MetaMask', 'title screen')
|
|
|
|
done()
|
|
})
|
|
})
|