We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca4363 commit d4fe0acCopy full SHA for d4fe0ac
test/tests.js
@@ -152,6 +152,11 @@ exports.issue1149 = () => {
152
153
const windowTitle = windowFormat.keywords.find(keyword => keyword.name === `WDWTITLE`);
154
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});
160
}
161
162
exports.issue1382 = () => {
0 commit comments