aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations')
-rw-r--r--packages/integrations/node/test/well-known-locations.test.js2
-rw-r--r--packages/integrations/react/test/parsed-react-children.test.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/node/test/well-known-locations.test.js b/packages/integrations/node/test/well-known-locations.test.js
index 934673cda..39d7ccedb 100644
--- a/packages/integrations/node/test/well-known-locations.test.js
+++ b/packages/integrations/node/test/well-known-locations.test.js
@@ -34,7 +34,7 @@ describe('test URIs beginning with a dot', () => {
const json = await res.json();
- assert.notStrictEqual(json.applinks, {});
+ assert.notEqual(json.applinks, {});
});
it('cannot load a dot folder that is not a well-known URI', async () => {
diff --git a/packages/integrations/react/test/parsed-react-children.test.js b/packages/integrations/react/test/parsed-react-children.test.js
index 5417705f0..75604e5d3 100644
--- a/packages/integrations/react/test/parsed-react-children.test.js
+++ b/packages/integrations/react/test/parsed-react-children.test.js
@@ -5,12 +5,12 @@ import convert from '../vnode-children.js';
describe('experimental react children', () => {
it('has undefined as children for direct children', () => {
const [imgVNode] = convert('<img src="abc"></img>');
- assert.deepStrictEqual(imgVNode.props.children, undefined);
+ assert.deepEqual(imgVNode.props.children, undefined);
});
it('has undefined as children for nested children', () => {
const [divVNode] = convert('<div><img src="xyz"></img></div>');
const [imgVNode] = divVNode.props.children;
- assert.deepStrictEqual(imgVNode.props.children, undefined);
+ assert.deepEqual(imgVNode.props.children, undefined);
});
});