prettier/tests/flow_object_order/__snapshots__/jsfmt.spec.js.snap

60 lines
692 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`order.js - flow-verify 1`] = `
type Foo = {
// a
alpha: 'hello',
// b
[key: string]: void,
// c
beta: 10,
// d
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
type Foo = {
// a
alpha: "hello",
// b
[key: string]: void,
// c
beta: 10
// d
};
`;
exports[`order.js - flow-verify 2`] = `
type Foo = {
// a
alpha: 'hello',
// b
[key: string]: void,
// c
beta: 10,
// d
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
type Foo = {
// a
alpha: "hello",
// b
[key: string]: void,
// c
beta: 10,
// d
};
`;