aboutsummaryrefslogtreecommitdiff
path: root/packages/db/test/integration-only.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/db/test/integration-only.test.js')
-rw-r--r--packages/db/test/integration-only.test.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/packages/db/test/integration-only.test.js b/packages/db/test/integration-only.test.js
new file mode 100644
index 000000000..b95d7d141
--- /dev/null
+++ b/packages/db/test/integration-only.test.js
@@ -0,0 +1,48 @@
+import assert from 'node:assert/strict';
+import { after, before, describe, it } from 'node:test';
+import { load as cheerioLoad } from 'cheerio';
+import { loadFixture } from '../../astro/test/test-utils.js';
+
+describe('astro:db with only integrations, no user db config', () => {
+ let fixture;
+ before(async () => {
+ fixture = await loadFixture({
+ root: new URL('./fixtures/integration-only/', import.meta.url),
+ });
+ });
+
+ describe('development', () => {
+ let devServer;
+ before(async () => {
+ devServer = await fixture.startDevServer();
+ });
+
+ after(async () => {
+ await devServer.stop();
+ });
+
+ it('Prints the list of menu items from integration-defined table', async () => {
+ const html = await fixture.fetch('/').then((res) => res.text());
+ const $ = cheerioLoad(html);
+
+ const ul = $('ul.menu');
+ assert.equal(ul.children().length, 4);
+ assert.match(ul.children().eq(0).text(), /Pancakes/);
+ });
+ });
+
+ describe('build', () => {
+ before(async () => {
+ await fixture.build();
+ });
+
+ it('Prints the list of menu items from integration-defined table', async () => {
+ const html = await fixture.readFile('/index.html');
+ const $ = cheerioLoad(html);
+
+ const ul = $('ul.menu');
+ assert.equal(ul.children().length, 4);
+ assert.match(ul.children().eq(0).text(), /Pancakes/);
+ });
+ });
+});