Skip to content

Commit

Permalink
back to original getUpdateInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
vzaidman committed Sep 15, 2024
1 parent a950042 commit 0b2f25e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/getUpdateInfo.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ describe('getUpdateInfo', () => {
});
});

test('Same eq by value state', () => {
test.only('Same state', () => {
const input = {
Component: TestComponent,
displayName: getDisplayName(TestComponent),
Expand All @@ -84,7 +84,7 @@ describe('getUpdateInfo', () => {
...input,
displayName: 'TestComponent',
reason: {
propsDifferences: false,
propsDifferences: [],
stateDifferences: [],
hookDifferences: false,
ownerDifferences: false,
Expand All @@ -108,7 +108,7 @@ describe('getUpdateInfo', () => {
...input,
displayName: 'TestComponent',
reason: {
propsDifferences: false,
propsDifferences: [],
stateDifferences: [],
hookDifferences: false,
ownerDifferences: false,
Expand Down Expand Up @@ -163,7 +163,7 @@ describe('getUpdateInfo', () => {
...input,
displayName: 'TestComponent',
reason: {
propsDifferences: false,
propsDifferences: [],
stateDifferences: [
{
pathString: 'a',
Expand Down Expand Up @@ -265,7 +265,7 @@ describe('getUpdateInfo', () => {
...input,
displayName: 'TestComponent',
reason: {
propsDifferences: false,
propsDifferences: [],
stateDifferences: [
{
pathString: 'a',
Expand Down Expand Up @@ -367,7 +367,7 @@ describe('getUpdateInfo', () => {
...input,
displayName: 'TestComponent',
reason: {
propsDifferences: false,
propsDifferences: [],
stateDifferences: [
{
pathString: 'a',
Expand Down

0 comments on commit 0b2f25e

Please sign in to comment.