piral-feeds
Advanced tools
Comparing version 1.8.0-beta.7667 to 1.8.0-beta.7668
{ | ||
"name": "piral-feeds", | ||
"version": "1.8.0-beta.7667", | ||
"version": "1.8.0-beta.7668", | ||
"description": "Plugin for connecting data feeds in Piral.", | ||
@@ -53,6 +53,6 @@ "keywords": [ | ||
"@types/react": "^18.0.0", | ||
"piral-core": "1.8.0-beta.7667", | ||
"piral-core": "1.8.0-beta.7668", | ||
"react": "^18.0.0" | ||
}, | ||
"gitHead": "658a8503fdf62c503e4d7cbe86cb3f6da0b2d76d" | ||
"gitHead": "1b32d52d4d57363bed8af9105dd41a0635075721" | ||
} |
@@ -40,3 +40,3 @@ /** | ||
destroyFeed(ctx, 'foo'); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -58,3 +58,3 @@ feeds: { | ||
createFeed(ctx, 'bar'); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -82,3 +82,3 @@ feeds: { | ||
loadedFeed(ctx, 'bar', 'test', 'errror'); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -112,3 +112,3 @@ feeds: { | ||
updateFeed(ctx, 'bar', 15, (data, item) => [...data, item]); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -142,3 +142,3 @@ feeds: { | ||
await updateFeed(ctx, 'bar', 15, (data, item) => Promise.resolve([...data, item])); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -172,3 +172,3 @@ feeds: { | ||
await updateFeed(ctx, 'bar', 15, () => Promise.reject('Failed')); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -214,3 +214,3 @@ feeds: { | ||
}); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -228,3 +228,3 @@ feeds: { | ||
await promise; | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -242,3 +242,3 @@ feeds: { | ||
cb(4); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -279,3 +279,3 @@ feeds: { | ||
}); | ||
expect((state.getState())).toEqual({ | ||
expect(state.getState()).toEqual({ | ||
foo: 5, | ||
@@ -282,0 +282,0 @@ feeds: { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61491