Skip to content

Commit 8e13e97

Browse files
committed
gts
1 parent 598a83f commit 8e13e97

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

datastore/functions/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
'use strict';
1616

17-
import { Datastore } from '@google-cloud/datastore';
17+
import {Datastore} from '@google-cloud/datastore';
1818

1919
// Instantiates a client
2020
const datastore = new Datastore();

datastore/functions/test/index.test.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414

1515
'use strict';
1616

17-
import { ok, strictEqual, deepStrictEqual } from 'assert';
18-
import { exec as execPromise } from 'child-process-promise';
19-
import { join } from 'path';
20-
import { v4 } from 'uuid';
21-
import { stub } from 'sinon';
17+
import {ok, strictEqual, deepStrictEqual} from 'assert';
18+
import {exec as execPromise} from 'child-process-promise';
19+
import {join} from 'path';
20+
import {v4} from 'uuid';
21+
import {stub} from 'sinon';
2222
import fetch from 'node-fetch';
2323
import waitPort from 'wait-port';
24-
import { Datastore } from '@google-cloud/datastore';
24+
import {Datastore} from '@google-cloud/datastore';
2525

2626
const datastore = new Datastore();
27-
import { set, get, del } from '../';
27+
import {set, get, del} from '../';
2828

2929
const FF_TIMEOUT = 3000;
3030
const cwd = join(__dirname, '..');

0 commit comments

Comments
 (0)