mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
[ci] format
This commit is contained in:
parent
36223f663e
commit
838eb3e5cc
2 changed files with 14 additions and 14 deletions
|
@ -1,21 +1,21 @@
|
||||||
import { assert, expect, test } from 'vitest'
|
import { assert, expect, test } from 'vitest';
|
||||||
|
|
||||||
// Edit an assertion and save to see HMR in action
|
// Edit an assertion and save to see HMR in action
|
||||||
|
|
||||||
test('Math.sqrt()', () => {
|
test('Math.sqrt()', () => {
|
||||||
expect(Math.sqrt(4)).toBe(2)
|
expect(Math.sqrt(4)).toBe(2);
|
||||||
expect(Math.sqrt(144)).toBe(12)
|
expect(Math.sqrt(144)).toBe(12);
|
||||||
expect(Math.sqrt(2)).toBe(Math.SQRT2)
|
expect(Math.sqrt(2)).toBe(Math.SQRT2);
|
||||||
})
|
});
|
||||||
|
|
||||||
test('JSON', () => {
|
test('JSON', () => {
|
||||||
const input = {
|
const input = {
|
||||||
foo: 'hello',
|
foo: 'hello',
|
||||||
bar: 'world',
|
bar: 'world',
|
||||||
}
|
};
|
||||||
|
|
||||||
const output = JSON.stringify(input)
|
const output = JSON.stringify(input);
|
||||||
|
|
||||||
expect(output).eq('{"foo":"hello","bar":"world"}')
|
expect(output).eq('{"foo":"hello","bar":"world"}');
|
||||||
assert.deepEqual(JSON.parse(output), input, 'matches original')
|
assert.deepEqual(JSON.parse(output), input, 'matches original');
|
||||||
})
|
});
|
||||||
|
|
|
@ -39,5 +39,5 @@ export function getViteConfig(inlineConfig) {
|
||||||
);
|
);
|
||||||
await runHookConfigDone({ config });
|
await runHookConfigDone({ config });
|
||||||
return mergeConfig(viteConfig, inlineConfig);
|
return mergeConfig(viteConfig, inlineConfig);
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue