Skip to content

Commit d4fe0ac

Browse files
committed
Additional check for older test
Signed-off-by: worksofliam <mrliamallan@live.co.uk>
1 parent dca4363 commit d4fe0ac

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/tests.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ exports.issue1149 = () => {
152152

153153
const windowTitle = windowFormat.keywords.find(keyword => keyword.name === `WDWTITLE`);
154154
assert.strictEqual(windowTitle.value, `*TEXT 'Print accounts by store number for status type - Help' *COLOR WHT`);
155+
156+
const text4 = windowFormat.fields.find(field => field.name === `TEXT4`);
157+
assert.ok(text4);
158+
assert.strictEqual(text4.value, `taken a check from that account. You can only select one status type`);
159+
assert.deepStrictEqual(text4.position, {x: 2, y: 5});
155160
}
156161

157162
exports.issue1382 = () => {

0 commit comments

Comments
 (0)