Skip to content

Commit

Permalink
[bump] 1.27.1 -> 1.27.2 (#110)
Browse files Browse the repository at this point in the history
* Bump version -> 1.27.2

* Enable timeout tests
  • Loading branch information
daniel-statsig authored Apr 21, 2023
1 parent 1ca5137 commit e18999c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "statsig-react",
"version": "1.27.1",
"version": "1.27.2",
"description": "An SDK for using Statsig Feature Management and Experimentation platform in React clients",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -40,9 +40,9 @@
"typescript": "^4.3.2"
},
"dependencies": {
"statsig-js": "^4.33.2"
"statsig-js": "^4.33.5"
},
"peerDependencies": {
"react": "^16.6.3 || ^17.0.0 || ^18.0.0"
}
}
}
2 changes: 1 addition & 1 deletion src/SDKVersion.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated by genversion.
export const version = '1.27.1'
export const version = '1.27.2'
6 changes: 3 additions & 3 deletions src/__tests__/InitFlows.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ describe('Prefetch Users', () => {
expectInitializeRequestAt(1, null, 'prefetched_user');
});

test.skip('Initializing with Network and Calling Prefetch with Timeout', async () => {
test('Initializing with Network and Calling Prefetch with Timeout', async () => {
render(<NetworkInitCallingPrefetch timeout={500} />);
await act(async () => {
jest.advanceTimersByTime(1000);
Expand All @@ -207,7 +207,7 @@ describe('Prefetch Users', () => {
expectOnlyOneInitializeRequest(null, 'prefetched_user');
});

test.skip('Initializing with Bootstrap and Calling Prefetch with Timeout', async () => {
test('Initializing with Bootstrap and Calling Prefetch with Timeout', async () => {
render(<BootstrapInitCallingPrefetch timeout={500} />);
await act(async () => {
jest.advanceTimersByTime(1000);
Expand All @@ -228,7 +228,7 @@ describe('Prefetch Users', () => {
expectOnlyOneInitializeRequest(null, 'options_prefetched_user');
});

test.skip('Initializing with Bootstrap and Providing Prefetch Option with Timeout', async () => {
test('Initializing with Bootstrap and Providing Prefetch Option with Timeout', async () => {
render(<BootstrapInitWithPrefetchOption timeout={500} />);

await act(async () => {
Expand Down

0 comments on commit e18999c

Please sign in to comment.