0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00
This commit is contained in:
Fred K. Schott 2022-02-09 12:34:06 -08:00
parent 3e24341f17
commit 78319dfff0
6 changed files with 15 additions and 15 deletions

View file

@ -1,6 +1,7 @@
# Astro Project Funding # Astro Project Funding
_Last Updated: 02-09-2022_ _Last Updated: 02-09-2022_
## Raising Funds ## Raising Funds
Astro is an MIT licensed open source project and completely free to use. However, the amount of effort needed to maintain and develop new features for Astro is not sustainable without proper financial backing. We need your help to achieve this. Astro is an MIT licensed open source project and completely free to use. However, the amount of effort needed to maintain and develop new features for Astro is not sustainable without proper financial backing. We need your help to achieve this.

View file

@ -31,7 +31,7 @@ describe('Attributes', async () => {
}; };
for (const id of Object.keys(attrs)) { for (const id of Object.keys(attrs)) {
const { attribute, value } = attrs[id] const { attribute, value } = attrs[id];
const attr = $(`#${id}`).attr(attribute); const attr = $(`#${id}`).attr(attribute);
expect(attr).to.equal(value); expect(attr).to.equal(value);
} }

View file

@ -2,7 +2,6 @@ import { expect } from 'chai';
import { loadFixture } from './test-utils.js'; import { loadFixture } from './test-utils.js';
describe('JSX', () => { describe('JSX', () => {
let cwd = './fixtures/astro-jsx/'; let cwd = './fixtures/astro-jsx/';
let orders = [ let orders = [
['preact', 'react', 'solid'], ['preact', 'react', 'solid'],