Skip to content

Commit 68e6199

Browse files
authored
fixes for when we release (#2912)
* there aren't any shell tests, so skip the hooks * make the logging tests more deterministic
1 parent a89c252 commit 68e6199

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/compass-e2e-tests/tests/logging.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ describe('Logging and Telemetry integration', function () {
1111

1212
before(async function () {
1313
telemetry = await startTelemetryServer();
14+
process.env.SHOW_TOUR = 'true'; // make this work the same in dev and when releasing
1415
const compass = await beforeTests({ firstRun: true });
1516
const { browser } = compass;
1617
try {
@@ -26,6 +27,7 @@ describe('Logging and Telemetry integration', function () {
2627
} finally {
2728
await afterTests(compass);
2829
await telemetry.stop();
30+
delete process.env.SHOW_TOUR;
2931
}
3032

3133
logs = compass.logs;

packages/compass-e2e-tests/tests/shell.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { Telemetry } from '../helpers/telemetry';
44
import { beforeTests, afterTests, afterTest } from '../helpers/compass';
55
import type { Compass } from '../helpers/compass';
66

7-
describe('Shell', function () {
7+
describe.skip('Shell', function () {
88
let compass: Compass;
99
let browser: CompassBrowser;
1010
let telemetry: Telemetry;

0 commit comments

Comments
 (0)