Skip to content
This repository has been archived by the owner on Jul 30, 2018. It is now read-only.

Commit

Permalink
Fix expected for getFeatures test
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Aug 1, 2017
1 parent 30e1721 commit cda5682
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/getFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ registerSuite({
assert.deepEqual(getFeatures({ features: 'ie11' }), {
'arraybuffer': true,
'blob': true,
'dom-mutationobserver': true,
'dom-mutationobserver': false,
'es-observable': false,
'es2017-object': false,
'es2017-string': false,
Expand Down Expand Up @@ -52,6 +52,7 @@ registerSuite({
assert.deepEqual(getFeatures({ features: [ 'ie11', 'node' ] }), {
arraybuffer: true,
blob: true,
'dom-mutationobserver': false,
'es2017-object': false,
'es2017-string': false,
'es-observable': false,
Expand Down

0 comments on commit cda5682

Please sign in to comment.