mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-05-07 01:02:36 +00:00
chore: update prettier tab width for consistency (#175)
This commit is contained in:
parent
a931f8c69c
commit
f24d2fcc99
247 changed files with 7224 additions and 7375 deletions
|
@ -5,22 +5,22 @@ import { Typist } from './Typist';
|
|||
jest.useFakeTimers();
|
||||
|
||||
it('correctly cycles through provided lines', () => {
|
||||
const lines = ['abcdef', 'ghijkl'];
|
||||
let view = shallow(<Typist charTimeout={100} resetTimeout={10000} lines={lines} />);
|
||||
const lines = ['abcdef', 'ghijkl'];
|
||||
let view = shallow(<Typist charTimeout={100} resetTimeout={10000} lines={lines} />);
|
||||
|
||||
jest.advanceTimersByTime(100 * lines[0].length);
|
||||
view = view.update();
|
||||
expect(view.text()).toBe(lines[0]);
|
||||
jest.advanceTimersByTime(100 * lines[0].length);
|
||||
view = view.update();
|
||||
expect(view.text()).toBe(lines[0]);
|
||||
});
|
||||
|
||||
it('correctly cycles through provided characters in a line', () => {
|
||||
const lines = ['abcdef'];
|
||||
const lines = ['abcdef'];
|
||||
|
||||
let view = shallow(<Typist charTimeout={1} resetTimeout={100} lines={lines} />);
|
||||
let view = shallow(<Typist charTimeout={1} resetTimeout={100} lines={lines} />);
|
||||
|
||||
Array(...lines[0]).forEach((_, idx) => {
|
||||
view = view.update();
|
||||
expect(view.text()).toBe(lines[0].slice(0, idx));
|
||||
jest.advanceTimersByTime(1);
|
||||
});
|
||||
Array(...lines[0]).forEach((_, idx) => {
|
||||
view = view.update();
|
||||
expect(view.text()).toBe(lines[0].slice(0, idx));
|
||||
jest.advanceTimersByTime(1);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue