Skip to content

Commit a229752

Browse files
committed
adjustments
1 parent 79915be commit a229752

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pure-ts-adapters.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ describe('dev-server integration tests - Pure TypeScript', function () {
5858

5959
it('should have package.json pointing main to TypeScript file', () => {
6060
const packageJson = validatePackageJson(PURE_TS_ADAPTER_DIR);
61+
console.log(packageJson);
6162
assert.strictEqual(packageJson.main, 'src/main.ts', 'main field should point to src/main.ts');
6263

6364
// Verify the build scripts have been removed
6465
assert.ok(packageJson.scripts.check?.includes("--noEmit"), 'check script should use --noEmit for type checking only');
65-
assert.ok(packageJson.scripts.build?.includes("--noEmit"), 'build script should use --noEmit for type checking only');
6666
assert.ok(!packageJson.scripts?.prebuild, 'prebuild script should not exist');
6767
});
6868

0 commit comments

Comments
 (0)