format
This commit is contained in:
parent
3e24341f17
commit
78319dfff0
6 changed files with 15 additions and 15 deletions
|
@ -1,6 +1,7 @@
|
|||
# Astro Project Funding
|
||||
|
||||
_Last Updated: 02-09-2022_
|
||||
|
||||
## 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.
|
||||
|
|
|
@ -31,7 +31,7 @@ describe('Attributes', async () => {
|
|||
};
|
||||
|
||||
for (const id of Object.keys(attrs)) {
|
||||
const { attribute, value } = attrs[id]
|
||||
const { attribute, value } = attrs[id];
|
||||
const attr = $(`#${id}`).attr(attribute);
|
||||
expect(attr).to.equal(value);
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@ import { expect } from 'chai';
|
|||
import { loadFixture } from './test-utils.js';
|
||||
|
||||
describe('JSX', () => {
|
||||
|
||||
let cwd = './fixtures/astro-jsx/';
|
||||
let orders = [
|
||||
['preact', 'react', 'solid'],
|
||||
|
|
Loading…
Reference in a new issue