This commit is contained in:
Kevin Van Der Werff
2019-10-22 15:58:42 +02:00
parent 81a2af2335
commit dc4616729b
2 changed files with 4 additions and 9 deletions

View File

@@ -28,11 +28,6 @@ export default {
console.groupEnd() console.groupEnd()
}, },
}, },
methods: {
updateSearchResults(e) {
console.log(e)
},
},
} }
</script> </script>

View File

@@ -11,11 +11,11 @@ test('includesElOf 2', () => {
}) })
test('includesElOf 3', () => { test('includesElOf 3', () => {
expect(P.includesElOf(['a', 'b'])(['a'])).toBeTruthy expect(P.includesElOf(['a', 'b'])(['a', 'c'])).toBeTruthy
}) })
test('includesElOf 4', () => { test('includesElOf 4', () => {
expect(P.includesElOf(['aa', 'b'])(['a'])).toBeFalsy expect(P.includesElOf(['aa', 'b'])(['a', 'c'])).toBeFalsy
}) })
test('partiallyIncludesElOf 1', () => { test('partiallyIncludesElOf 1', () => {
@@ -23,11 +23,11 @@ test('partiallyIncludesElOf 1', () => {
}) })
test('partiallyIncludesElOf 2', () => { test('partiallyIncludesElOf 2', () => {
expect(P.partiallyIncludesElOf(['aa', 'b'])(['a'])).toBeTruthy expect(P.partiallyIncludesElOf(['aa', 'b'])(['a', 'c'])).toBeTruthy
}) })
test('partiallyIncludesElOf 3', () => { test('partiallyIncludesElOf 3', () => {
expect(P.partiallyIncludesElOf(['aa', 'b'], ['c'])).toBeFalsy expect(P.partiallyIncludesElOf(['aa', 'b'], ['c', 'd'])).toBeFalsy
}) })
test('get all tags', () => { test('get all tags', () => {