Skip to content

Commit

Permalink
update test to make fill a setter method
Browse files Browse the repository at this point in the history
  • Loading branch information
locks committed Sep 20, 2023
1 parent 682a962 commit e1434d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-app/tests/unit/array-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const ARRAY_GETTER_METHODS = [
'concat',
'entries',
'every',
'fill',
'filter',
'find',
'findIndex',
Expand All @@ -36,6 +35,7 @@ const ARRAY_GETTER_METHODS = [

const ARRAY_SETTER_METHODS = [
'copyWithin',
'fill',
'pop',
'push',
'reverse',
Expand All @@ -49,7 +49,7 @@ const ARRAY_SETTER_METHODS = [
// vice versa).
expectTypeOf<TrackedArray<unknown>>().toMatchTypeOf<Array<unknown>>();

module('TrackedArray', function (hooks) {
module.only('TrackedArray', function (hooks) {
setupRenderingTest(hooks);

test('Can get values on array directly', (assert) => {
Expand Down

0 comments on commit e1434d9

Please sign in to comment.