mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-13 08:04:40 +08:00
fix(build): Fix linter errors
This commit is contained in:
parent
ab55bc68ea
commit
8d84ef9fab
5 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@ import {SelectableTable, EditableTableCell, EditableTable} from 'nylas-component
|
|||
import {selection, cellProps, tableProps, testDataSource} from '../fixtures/table-data'
|
||||
|
||||
|
||||
describe('EditableTable Components', () => {
|
||||
describe('EditableTable Components', function describeBlock() {
|
||||
describe('EditableTableCell', () => {
|
||||
function renderCell(props) {
|
||||
// This node is used so that React does not issue DOM tree warnings when running
|
||||
|
|
|
@ -4,7 +4,7 @@ import {Table, SelectableTableCell, SelectableTableRow, SelectableTable} from 'n
|
|||
import {selection, cellProps, rowProps, tableProps, testDataSource} from '../fixtures/table-data'
|
||||
|
||||
|
||||
describe('SelectableTable Components', () => {
|
||||
describe('SelectableTable Components', function describeBlock() {
|
||||
describe('SelectableTableCell', () => {
|
||||
function renderCell(props) {
|
||||
return shallow(
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import {testData, testDataSource} from '../../fixtures/table-data'
|
||||
|
||||
|
||||
describe('TableDataSource', () => {
|
||||
describe('TableDataSource', function describeBlock() {
|
||||
describe('colAt', () => {
|
||||
it('returns the correct value for column', () => {
|
||||
expect(testDataSource.colAt(1)).toEqual('col2')
|
||||
|
|
|
@ -4,7 +4,7 @@ import {Table, TableRow, TableCell, LazyRenderedList} from 'nylas-component-kit'
|
|||
import {testDataSource} from '../../fixtures/table-data'
|
||||
|
||||
|
||||
describe('Table Components', () => {
|
||||
describe('Table Components', function describeBlock() {
|
||||
describe('TableCell', () => {
|
||||
it('renders children correctly', () => {
|
||||
const element = shallow(<TableCell>Cell</TableCell>)
|
||||
|
|
2
src/pro
2
src/pro
|
@ -1 +1 @@
|
|||
Subproject commit 6e7135d50ed005e4b0e9a5ac54b8323ef031e0bd
|
||||
Subproject commit 17af8764f710a944344d39a9f834006fd7a0f3d5
|
Loading…
Add table
Reference in a new issue