1
0
mirror of synced 2026-08-03 21:56:54 +00:00

fix assertion

This commit is contained in:
Rimian Perkins
2017-02-13 13:50:48 +11:00
parent ac2d772843
commit e32e7b9def
2 changed files with 3 additions and 3 deletions
@@ -5,7 +5,7 @@ test('Choice Page Exists', () => {
visit('/users/eviltrout/choice');
andThen(() => {
ok(exists('h1'), 'Choice');
ok(exists('.payments'), 'eviltrout');
ok(exists('h1'), 'Heading exists');
ok($.trim($('.payments').text()) == 'eviltrout', 'eviltrout');
});
});