Skip to content

Commit

Permalink
Merge pull request #2201 from embroider-build/si-fix-stable
Browse files Browse the repository at this point in the history
Fix type error on stable
  • Loading branch information
ef4 authored Dec 9, 2024
2 parents 18d14eb + 695c746 commit 0cb4728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/macros/tests/babel/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ disabledTest.failing = disabledTest;

export function allModes(fn: CreateModeTests): CreateTests {
return function createTests(transform: Transform) {
for (let mode of ['build-time', 'run-time']) {
for (const mode of ['build-time', 'run-time']) {
describe(mode, function () {
function applyMode(macrosConfig: MacrosConfig) {
if (mode === 'run-time') {
Expand Down

0 comments on commit 0cb4728

Please sign in to comment.