style: Fix indentation in CandidateBox.test.js

This commit is contained in:
Herbert Lin 2024-05-13 23:19:44 -07:00
parent eb5787205e
commit defbdaaf69

View File

@ -369,9 +369,9 @@ it('CandidateBox selection should trigger onChange', () => {
expect(keyboard.options.onChange.mock.calls[1][0]).toBe("1");
expect(keyboard.options.onChangeAll.mock.calls[1][0]).toMatchObject({"default": "1"});
keyboard.destroy();
});
});
it('CandidateBox normalization will work', () => {
it('CandidateBox normalization will work', () => {
const keyboard = new Keyboard({
layout: {
default: [
@ -426,4 +426,4 @@ it('CandidateBox selection should trigger onChange', () => {
expect(keyboard.options.onChangeAll.mock.calls[3][0]).toMatchObject({"default": "신"});
keyboard.destroy();
});
});