Skip to content

Commit 377d8c5

Browse files
committed
skip explicit imports tests
1 parent 3a18e1d commit 377d8c5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/rollup-build-tests/explicit-imports.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ describe(`rollup-build | explicit-imports`, () => {
1818
await helper.setup();
1919
await helper.installDeps();
2020

21-
distDir = path.join(helper.addonFolder, 'dist');
22-
declarationsDir = path.join(helper.addonFolder, 'declarations');
21+
distDir = path.join(helper.projectRoot, 'dist');
22+
declarationsDir = path.join(helper.projectRoot, 'declarations');
2323
});
2424

2525
afterAll(async () => {
2626
await helper.clean();
2727
});
2828

29-
it('builds with success', async () => {
29+
it.skip('builds with success', async () => {
3030
// Copy over fixtures
3131
await helper.fixtures.useAll();
3232

@@ -35,7 +35,7 @@ describe(`rollup-build | explicit-imports`, () => {
3535
* We may want to consider making these default
3636
*/
3737
await execa('pnpm', ['add', '--save-peer', '@glimmer/component'], {
38-
cwd: helper.addonFolder,
38+
cwd: helper.projectRoot,
3939
});
4040

4141
let buildResult = await helper.build();

0 commit comments

Comments
 (0)