summaryrefslogtreecommitdiff
path: root/packages/core/src/index.test.ts
diff options
context:
space:
mode:
authorTommaso Sciortino <[email protected]>2025-05-30 18:25:47 -0700
committerGitHub <[email protected]>2025-05-30 18:25:47 -0700
commit21fba832d1b4ea7af43fb887d9b2b38fcf8210d0 (patch)
tree7200d2fac3a55c385e0a2dac34b5282c942364bc /packages/core/src/index.test.ts
parentc81148a0cc8489f657901c2cc7247c0834075e1a (diff)
Rename server->core (#638)
Diffstat (limited to 'packages/core/src/index.test.ts')
-rw-r--r--packages/core/src/index.test.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/core/src/index.test.ts b/packages/core/src/index.test.ts
new file mode 100644
index 00000000..154c96a6
--- /dev/null
+++ b/packages/core/src/index.test.ts
@@ -0,0 +1,13 @@
+/**
+ * @license
+ * Copyright 2025 Google LLC
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+import { describe, it, expect } from 'vitest';
+
+describe('placeholder tests', () => {
+ it('should pass', () => {
+ expect(true).toBe(true);
+ });
+});