Skip to content

Commit 260ac98

Browse files
Test done
1 parent a124493 commit 260ac98

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

packages/firestore/src/core/component_provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import {
4444
} from '../local/memory_persistence';
4545

4646
const MEMORY_ONLY_PERSISTENCE_ERROR_MESSAGE =
47-
'You ARE using the memory-only build of Firestore. Persistence support is ' +
47+
'You are using the memory-only build of Firestore. Persistence support is ' +
4848
'only available via the @firebase/firestore bundle or the ' +
4949
'firebase-firestore.js build.';
5050

scripts/run_changed.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,18 +96,14 @@ async function getChangedPackages() {
9696
return { testAll: true };
9797
}
9898
// Files outside a package dir that should trigger its tests.
99-
console.log(filename);
10099
const matchingSpecialPaths = Object.keys(specialPaths).filter(path =>
101100
filename.startsWith(path)
102101
);
103-
console.log(matchingSpecialPaths);
104102
for (const matchingSpecialPath of matchingSpecialPaths) {
105103
for (const targetPackage of specialPaths[matchingSpecialPath]) {
106104
changedPackages[targetPackage] = 'dependency';
107105
}
108106
}
109-
console.log(changedPackages);
110-
throw new Error('foo');
111107
// Check for changed files inside package dirs.
112108
const match = filename.match('^(packages(-exp)?/[a-zA-Z0-9-]+)/.*');
113109
if (match && match[1]) {

0 commit comments

Comments
 (0)