Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ describe('Timeline profiler', () => {
`);
});

it('should mark concurrent render without suspends or state updates', () => {
it('should mark concurrent transitions without suspends or state updates', () => {
let updaterFn;

function Example() {
Expand Down Expand Up @@ -1264,15 +1264,15 @@ describe('Timeline profiler', () => {
Array [
Object {
"componentName": "Example",
"duration": 0,
"duration": 10,
"timestamp": 10,
"type": "render",
"warning": null,
},
Object {
"componentName": "Example",
"duration": 10,
"timestamp": 10,
"timestamp": 20,
"type": "render",
"warning": null,
},
Expand Down
Loading