mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
16 lines
298 B
TypeScript
16 lines
298 B
TypeScript
import { __vue } from '@nativescript/webpack';
|
|
|
|
describe('vue configuration', () => {
|
|
const platforms = ['ios', 'android'];
|
|
|
|
for (let platform of platforms) {
|
|
it(`[${platform}] works`, () => {
|
|
expect(
|
|
__vue({
|
|
[platform]: true,
|
|
}).toString()
|
|
).toMatchSnapshot();
|
|
});
|
|
}
|
|
});
|