Skip to content

Commit

Permalink
feat: top-level imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Apr 10, 2024
1 parent 88d8703 commit 5a22f1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/test/cjs-command.test.ts.ejs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TestContext } from '@salesforce/core/lib/testSetup';
import { TestContext } from '@salesforce/core/testSetup';
import { expect } from 'chai';
import { stubSfCommandUx } from '@salesforce/sf-plugins-core';
import <%- className %> from '<%- relativeCmdPath %>'
Expand Down
2 changes: 1 addition & 1 deletion templates/test/esm-command.test.ts.ejs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TestContext } from '@salesforce/core/lib/testSetup.js';
import { TestContext } from '@salesforce/core/testSetup';
import { expect } from 'chai';
import { stubSfCommandUx } from '@salesforce/sf-plugins-core';
import <%- className %> from '<%- relativeCmdPath %>.js'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import { TestContext } from '@salesforce/core/lib/testSetup.js';
import { TestContext } from '@salesforce/core/testSetup';
import { expect } from 'chai';
import { stubSfCommandUx } from '@salesforce/sf-plugins-core';
import World from '../../../src/commands/hello/world.js';
Expand Down

0 comments on commit 5a22f1b

Please sign in to comment.