5eb232501f
* fix(www): link styles (#100) Co-authored-by: Nate Moore <nate@skypack.dev> * Add `assets/` (#102) * chore: add assets * docs: update readme Co-authored-by: Nate Moore <nate@skypack.dev> * docs: fix readme * docs: fix readme * chore: remove github banner * Allow multiple JSX in mustache * Manually discard package-lock update (due to local use of npm v7) * Tidy up * Revert mode ts-ignore Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Nate Moore <nate@skypack.dev>
63 lines
1.7 KiB
JavaScript
63 lines
1.7 KiB
JavaScript
import { suite } from 'uvu';
|
|
import * as assert from 'uvu/assert';
|
|
import { doc } from './test-utils.js';
|
|
import { setup } from './helpers.js';
|
|
|
|
const Expressions = suite('Expressions');
|
|
|
|
setup(Expressions, './fixtures/astro-expr');
|
|
|
|
Expressions('Can load page', async ({ runtime }) => {
|
|
const result = await runtime.load('/');
|
|
|
|
assert.equal(result.statusCode, 200);
|
|
|
|
const $ = doc(result.contents);
|
|
|
|
for (let col of ['red', 'yellow', 'blue']) {
|
|
assert.equal($('#' + col).length, 1);
|
|
}
|
|
});
|
|
|
|
Expressions('Ignores characters inside of strings', async ({ runtime }) => {
|
|
const result = await runtime.load('/strings');
|
|
|
|
assert.equal(result.statusCode, 200);
|
|
|
|
const $ = doc(result.contents);
|
|
|
|
for (let col of ['red', 'yellow', 'blue']) {
|
|
assert.equal($('#' + col).length, 1);
|
|
}
|
|
});
|
|
|
|
Expressions('Ignores characters inside of line comments', async ({ runtime }) => {
|
|
const result = await runtime.load('/line-comments');
|
|
assert.equal(result.statusCode, 200);
|
|
|
|
const $ = doc(result.contents);
|
|
|
|
for (let col of ['red', 'yellow', 'blue']) {
|
|
assert.equal($('#' + col).length, 1);
|
|
}
|
|
});
|
|
|
|
Expressions('Ignores characters inside of multiline comments', async ({ runtime }) => {
|
|
const result = await runtime.load('/multiline-comments');
|
|
assert.equal(result.statusCode, 200);
|
|
|
|
const $ = doc(result.contents);
|
|
|
|
for (let col of ['red', 'yellow', 'blue']) {
|
|
assert.equal($('#' + col).length, 1);
|
|
}
|
|
});
|
|
|
|
Expressions('Allows multiple JSX children in mustache', async ({ runtime }) => {
|
|
const result = await runtime.load('/multiple-children');
|
|
assert.equal(result.statusCode, 200);
|
|
|
|
assert.ok(result.contents.includes('#f') && !result.contents.includes('#t'));
|
|
});
|
|
|
|
Expressions.run();
|