mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-28 22:30:40 -04:00
Add case from GH-1526 to unit test suite
This commit is contained in:
parent
bbefc18158
commit
e024b7d369
1 changed files with 1 additions and 0 deletions
|
@ -46,6 +46,7 @@ test('equals', t => {
|
|||
t.strictEqual(blocks.equals({OPERAND1: '1', OPERAND2: '2'}), false);
|
||||
t.strictEqual(blocks.equals({OPERAND1: '2', OPERAND2: '1'}), false);
|
||||
t.strictEqual(blocks.equals({OPERAND1: '1', OPERAND2: '1'}), true);
|
||||
t.strictEqual(blocks.equals({OPERAND1: 'あ', OPERAND2: 'ア'}), false);
|
||||
t.end();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue