Skip to content

Commit

Permalink
chore: fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
georgewrmarshall committed Oct 11, 2024
1 parent 7eec8ef commit de8cc38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/spacing/spacing.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { spacing, getSpacing } from '../spacing/spacing';
import { spacing, getSpacing } from './spacing';

describe('spacing tokens', () => {
it('spacing object contains all expected keys', () => {
Expand Down Expand Up @@ -41,7 +41,7 @@ describe('spacing tokens', () => {
];

expectedKeys.forEach((key) => {
expect(spacing).toHaveProperty(key);
expect(spacing[key as keyof typeof spacing]).toBeDefined();
});
});

Expand Down

0 comments on commit de8cc38

Please sign in to comment.